Exemplo n.º 1
0
 public UrgentApplication(IUrgentService urgentService)
 {
     _urgentService = urgentService;
 }
Exemplo n.º 2
0
 public TaskController(ITaskService taskService, IUrgentService urgentService, IMapper mapper)
 {
     _urgentService = urgentService;
     _taskService   = taskService;
     _mapper        = mapper;
 }
Exemplo n.º 3
0
 public UrgentController(IUrgentService urgentService, IMapper mapper)
 {
     _urgentService = urgentService;
     _mapper        = mapper;
 }