Ejemplo n.º 1
0
 public CustomerRequestController(IKycService _kycService, IErrorLogService _errorLogService, IAuditTrailService _auditTrailService, ICustomerReqLogService _customerReqLogService, ICustomerRequestService _customerRequestService)
 {
     auditTrailService      = _auditTrailService;
     customerReqLogService  = _customerReqLogService;
     customerRequestService = _customerRequestService;
     errorLogService        = _errorLogService;
     kycService             = _kycService;
 }
Ejemplo n.º 2
0
 public DistributorController(ICustomerRequestService _customerRequestService, IErrorLogService _errorLogService, IAuditTrailService _auditTrailService, ILocationService locationService, IKycService kycService, IDistributorService distributorService, IDsrService objDsrService, IDormantAccService _dormantAccService)
 {
     this.auditTrailService      = _auditTrailService;
     this._distributorService    = distributorService;
     this._DsrService            = objDsrService;
     this.dormantAccService      = _dormantAccService;
     this._kycService            = kycService;
     this._locationService       = locationService;
     this.errorLogService        = _errorLogService;
     this.customerRequestService = _customerRequestService;
 }
Ejemplo n.º 3
0
 public CustomerService(ICustomerRepository customerRepository, IKycService _kycService, ICustomerRequestService _customerRequestService)
 {
     _customerRepository    = customerRepository;
     kycService             = _kycService;
     customerRequestService = _customerRequestService;
 }