public LoanDiscController(IUnitOfWork unitofWork, INavyAccountDbContext context, IConfiguration configuration, ILoandiscService loandiscService)
 {
     _connectionstring    = configuration.GetConnectionString("DefaultConnection");
     this.unitofWork      = unitofWork;
     this.context         = context;
     this.loandiscService = loandiscService;
 }
Example #2
0
 public LoandiscprocessController(IFundTypeCodeService fundtypeservice, ILoandiscService loandiscService, ILoanTypeService loantypeService, IUnitOfWork unitOfWork)
 {
     this.loandiscService = loandiscService;
     this.loantypeService = loantypeService;
     this.unitOfWork      = unitOfWork;
     this.fundtypeservice = fundtypeservice;
 }
Example #3
0
 public LoanDiscController(ILoanRegisterService loanRegisterService, ILoanTypeService loantypeService, IUnitOfWork unitofWork, INavyAccountDbContext context, IConfiguration configuration, ILoandiscService loandiscService, IGeneratePdf generatePdf)
 {
     _connectionstring        = configuration.GetConnectionString("DefaultConnection");
     this.unitofWork          = unitofWork;
     this.context             = context;
     this.loandiscService     = loandiscService;
     this.loantypeService     = loantypeService;
     this.generatePdf         = generatePdf;
     this.loanRegisterService = loanRegisterService;
 }