public UrgentApplication(IUrgentService urgentService)
 {
     _urgentService = urgentService;
 }
Beispiel #2
0
 public TaskController(ITaskService taskService, IUrgentService urgentService, IMapper mapper)
 {
     _urgentService = urgentService;
     _taskService   = taskService;
     _mapper        = mapper;
 }
 public UrgentController(IUrgentService urgentService, IMapper mapper)
 {
     _urgentService = urgentService;
     _mapper        = mapper;
 }