public InvoiceInfoService(ICustomerSettlementRepository customerSettlementRepository,
                           IPartnerSettlementRepository partnerSettlementRepository,
                           IBasicRepository basicRepository,
                           IUnitOfWork unitOfWork
                           )
 {
     this._customerSettlementRepository = customerSettlementRepository;
     this._partnerSettlementRepository  = partnerSettlementRepository;
     this._basicRepository = basicRepository;
     this._unitOfWork      = unitOfWork;
 }
Beispiel #2
0
 public CustomerService(ICustomerRepository customerRepository,
                        ICustomerSettlementRepository customerSettlementRepository,
                        ICustomerGrossProfitRepository customerGrossProfitRepository,
                        ICustomerBalanceRepository customerBalanceRepository,
                        IUnitOfWork unitOfWork)
 {
     this._customerRepository            = customerRepository;
     this._customerSettlementRepository  = customerSettlementRepository;
     this._customerGrossProfitRepository = customerGrossProfitRepository;
     this._customerBalanceRepository     = customerBalanceRepository;
     this._unitOfWork = unitOfWork;
 }