public DepartmentsController(DepartmentService departmentService)
 {
     _departmentService = departmentService;
     _errorThreatment   = new ErrorTreatmentComponent(this);
 }
Example #2
0
 public SellersController(SellerService sellerService)
 {
     _sellerService   = sellerService;
     _errorThreatment = new ErrorTreatmentComponent(this);
 }