예제 #1
0
 public RepaymentService(IRepository <Season> seasonRepository,
                         IRepaymentRepository repaymentRepository, ICustomerSummaryRepository customerSummaryRepository)
 {
     _seasonRepository          = seasonRepository;
     _repaymentRepository       = repaymentRepository;
     _customerSummaryRepository = customerSummaryRepository;
 }
예제 #2
0
 public RepaymentService(AppDbContext appDbContext, IBaseRepository <Repayment> repaymentRepository,
                         ICustomerSummaryRepository customerSummaryRepository,
                         IBaseRepository <RepaymentUpload> repaymentUploadRepository)
 {
     _appDbContext              = appDbContext;
     _repaymentRepository       = repaymentRepository;
     _customerSummaryRepository = customerSummaryRepository;
     _repaymentUploadRepository = repaymentUploadRepository;
 }
예제 #3
0
 public CustomerSummaryService(ICustomerSummaryRepository customerSummaryRepository)
 {
     _customerSummaryRepository = customerSummaryRepository;
 }