Ejemplo n.º 1
0
 public RepaymentService(IRepository <Season> seasonRepository,
                         IRepaymentRepository repaymentRepository, ICustomerSummaryRepository customerSummaryRepository)
 {
     _seasonRepository          = seasonRepository;
     _repaymentRepository       = repaymentRepository;
     _customerSummaryRepository = customerSummaryRepository;
 }
Ejemplo n.º 2
0
 public LoanBuilderController(
     IContractRepository contractRepository,
     IContractDraftRepository draftRepository,
     IRepaymentRepository repaymentRepository)
 {
     this.contractRepository  = contractRepository;
     this.draftRepository     = draftRepository;
     this.repaymentRepository = repaymentRepository;
 }
Ejemplo n.º 3
0
 public ContractsController(
     IContractRepository contractRepository,
     IEntityRepository entityRepository,
     IRepaymentRepository paymentRepository)
 {
     this.contractRepository = contractRepository;
     this.entityRepository   = entityRepository;
     this.paymentRepository  = paymentRepository;
 }
Ejemplo n.º 4
0
 public RepaymentController(ScoreCardContext context, ILoggerFactory logFactory, IMemoryCache memoryCache, IOptions <ApiSettings> options)
     : base(context, logFactory, memoryCache, options)
 {
     this._repository = new RepaymentRepository(this._context);
 }