Пример #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;
 }
Пример #2
0
 public NCDataUploadService(IMusicsRepository mRep, INCDataUploadRepository NCRep, IUnitOfWork uow)
     : base(NCRep, uow)
 {
     this._mRep  = mRep;
     this._NCRep = NCRep;
 }