public CustomerResourceController(
     IStatusService StatusService,
     ICustomerResourceService CustomerResourceService,
     ICurrentContext CurrentContext
     , IHttpContextAccessor httpContextAccessor, DataContext _DataContext
     ) : base(httpContextAccessor, _DataContext)
 {
     this.StatusService           = StatusService;
     this.CustomerResourceService = CustomerResourceService;
     this.CurrentContext          = CurrentContext;
 }
Beispiel #2
0
 public EmployeeController(ICustomerResourceService resourceService)
 {
     ResourceService = resourceService;
 }
Beispiel #3
0
 public CustomerResourceController(ICustomerResourceService customerResourceService)
 {
     _customerResourceService = customerResourceService;
 }