public AccountMaintenanceController(IAccountService accountService,
                                     IApplicationDescriptionService applicationDescriptionService,
                                     IApplicationDetailService applicationDetailService,
                                     IEquationCustomerService equationCustomerService,
                                     IUnitOfWork unitOfWork,
                                     IMapper mapper)
 {
     _accountService = accountService;
     _applicationDescriptionService = applicationDescriptionService;
     _applicationDetailService      = applicationDetailService;
     _equationCustomerService       = equationCustomerService;
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
 }
Example #2
0
 public ApplicationCustomerController(IEquationCustomerService equationCustomerService, IUnitOfWork unitOfWork, IMapper mapper)
 {
     _equationCustomerService = equationCustomerService;
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
 }