Exemple #1
0
 /// <summary></summary>
 public CustomerCategoriesController(
     IUnitOfWorkAsync unitOfWorkAsync,
     ICustomerCategoryService service)
 {
     _unitOfWorkAsync = unitOfWorkAsync;
     _service         = service;
 }
Exemple #2
0
 public CustomerController(
     ICustomerService customerService,
     ICustomerCategoryService customerCategoryService,
     IEnumService enumService
     )
 {
     _customerService         = customerService;
     _customerCategoryService = customerCategoryService;
     _enumService             = enumService;
 }
Exemple #3
0
 public CustomerCategoryController(ICustomerCategoryService customerCategoryService, CustomerCategoryViewModel customerCategoryViewModel)
     : base(customerCategoryService, customerCategoryViewModel)
 {
 }
 public CustomerCategoryController(ICustomerCategoryService customerCategoryService)
 {
     _customerCategoryService = customerCategoryService;
 }