Example #1
0
 public AreaController(IUserReferenceRepo repoBase, ILookupCodeRepo repoLookup, IAreaRepo repoArea, ILocationRepo repoLocation, IRuteRepo repoRute)
     : base(repoBase, repoLookup)
 {
     RepoArea     = repoArea;
     RepoLocation = repoLocation;
     RepoRute     = repoRute;
 }
Example #2
0
 public RuteController(IUserReferenceRepo repoBase, ILookupCodeRepo repoLookup,
                       IRuteRepo repoRute, ILocationRepo repoLocation, IAreaRepo repoArea, IMultiDropRepo repoMultidrop)
     : base(repoBase, repoLookup)
 {
     RepoRute      = repoRute;
     RepoLocation  = repoLocation;
     RepoArea      = repoArea;
     RepoMultidrop = repoMultidrop;
 }
Example #3
0
 public AreaController(IAreaRepo AreaRepo, IRestaurantRepo RestRepo, IDeliveryServiceRepo serviceRepo)
 {
     AreaRepoInterface            = AreaRepo;
     RestaurantRepoInterface      = RestRepo;
     DeliveryServiceRepoInterface = serviceRepo;
 }
Example #4
0
 public AreaController(IAreaRepo _areaRepo)
 {
     areaRepo = _areaRepo;
 }