Ejemplo n.º 1
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;
 }
Ejemplo n.º 2
0
 public MultidropController(IUserReferenceRepo repoBase, ILookupCodeRepo repoLookup, IMultiDropRepo repoMultidrop, ILocationRepo repoLocation)
     : base(repoBase, repoLookup)
 {
     RepoMultidrop = repoMultidrop;
     RepoLocation  = repoLocation;
 }