using HeuristicLab.Problems.RoutePlanning.Data.Core; namespace HeuristicLab.Problems.RoutePlanning.Interfaces { public interface IDataSource { IGraph GetRoutingGraph(); IGraph GetRoutingGraph(VehicleType vehicle); } }