public CustomersController(ICustomerSevice customerSevice)
 {
     this.customerSevice = customerSevice;
 }
Beispiel #2
0
 public CustomerController(IDistributorService _distributorService, ICustomerSevice customerSevice, IErrorLogService _errorLogService)
 {
     this._customerSevice    = customerSevice;
     this.errorLogService    = _errorLogService;
     this.distributorService = _distributorService;
 }