public HireController(IHireService service)
 {
     _service = service;
 }
Exemple #2
0
 public DeleteHireHandler(IHireService hireService)
 {
     _hireService = hireService;
 }
 public UpdateHireHandler(IHireService hireService)
 {
     _hireService = hireService;
 }
 public HireController(IHireService hireService, IHubContext <NotificationHub> notificationHubContext)
 {
     _hireService            = hireService;
     _notificationHubContext = notificationHubContext;
 }
 public GetHireByIdHandler(IHireService hireService)
 {
     _hireService = hireService;
 }
 public GetAllHiresHandler(IHireService hireService)
 {
     _hireService = hireService;
 }