Ejemplo n.º 1
0
 public HireController(IHireService service)
 {
     _service = service;
 }
Ejemplo n.º 2
0
 public DeleteHireHandler(IHireService hireService)
 {
     _hireService = hireService;
 }
Ejemplo n.º 3
0
 public UpdateHireHandler(IHireService hireService)
 {
     _hireService = hireService;
 }
 public HireController(IHireService hireService, IHubContext <NotificationHub> notificationHubContext)
 {
     _hireService            = hireService;
     _notificationHubContext = notificationHubContext;
 }
Ejemplo n.º 5
0
 public GetHireByIdHandler(IHireService hireService)
 {
     _hireService = hireService;
 }
Ejemplo n.º 6
0
 public GetAllHiresHandler(IHireService hireService)
 {
     _hireService = hireService;
 }