예제 #1
0
 public Book(string filePath, IGraphCreator graphCreator, string name)
     : this(name, graphCreator.CreateGraphFromFile(filePath))
 {
     m_GraphCreator = graphCreator;
 }
예제 #2
0
 public Book(string filePath, IGraphCreator graphCreator, string name)
     : this(name, graphCreator.CreateGraphFromFile(filePath))
 {
     m_GraphCreator = graphCreator;
 }
예제 #3
0
 public void Update(string filePath)
 {
     Update(m_GraphCreator.CreateGraphFromFile(filePath));
 }