示例#1
0
 public SortingAlgoritm(List <BeheerTrack> allTracks, LogisticRepository repo)
 {
     this.repo       = repo;
     this.allTracks  = allTracks;
     OccupiedSectors = new List <float>();
     unassignedTrams = new List <BeheerTram>();
 }
示例#2
0
 public TramSortingAlgoritm(List <BeheerTrack> allTracks, LogisticRepository repo)
 {
     _repo      = repo;
     _allTracks = allTracks;
 }