public Book(string filePath, IGraphCreator graphCreator, string name) : this(name, graphCreator.CreateGraphFromFile(filePath)) { m_GraphCreator = graphCreator; }
public void Update(string filePath) { Update(m_GraphCreator.CreateGraphFromFile(filePath)); }