示例#1
0
 public AreaController(IUserReferenceRepo repoBase, ILookupCodeRepo repoLookup, IAreaRepo repoArea, ILocationRepo repoLocation, IRuteRepo repoRute)
     : base(repoBase, repoLookup)
 {
     RepoArea     = repoArea;
     RepoLocation = repoLocation;
     RepoRute     = repoRute;
 }
示例#2
0
 public RuteTolController(IUserReferenceRepo repoBase, ILookupCodeRepo repoLookup, IRuteTolRepo repoRuteTol, IRuteRepo repoRute, IJnsTolRepo repoJnsTol)
     : base(repoBase, repoLookup)
 {
     RepoRuteTol = repoRuteTol;
     RepoRute    = repoRute;
     RepoJnsTol  = repoJnsTol;
 }
示例#3
0
 public DaftarHargaOnCallController(IUserReferenceRepo repoBase, ILookupCodeRepo repoLookup, IDaftarHargaOnCallRepo repoDHO,
                                    IRuteRepo repoRute, ISalesOrderRepo repoSO)
     : base(repoBase, repoLookup)
 {
     RepoDHO  = repoDHO;
     RepoRute = repoRute;
     RepoSO   = repoSO;
 }
示例#4
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;
 }