Ejemplo n.º 1
0
 public DashboardService(IUnitOfWork uow,
                         INCRegisterRepository ncRegRep,
                         INCDataUploadRepository ncDataUpRep,
                         INCPurchaseRepository ncPurchaseRep,
                         IAuctionRepository auctRep,
                         IPurchaseRepository purchRep,
                         IConfirmationRepository confRep)
 {
     this.auctRep       = auctRep;
     this.confRep       = confRep;
     this.ncDataUpRep   = ncDataUpRep;
     this.ncPurchaseRep = ncPurchaseRep;
     this.ncRegRep      = ncRegRep;
     this.purchRep      = purchRep;
 }
Ejemplo n.º 2
0
 public NCPurchaseService(IPurchaseRepository pRep, INCPurchaseRepository NCRep, IUnitOfWork uow) : base(NCRep, uow)
 {
     this._pRep = pRep;
 }