public AssignmentController(
     IAssignmentService assignmentService,
     IAssignmentModelFactory assignmentModelFactory,
     IExigencyService exigencyService)
 {
     _assignmentService      = assignmentService;
     _assignmentModelFactory = assignmentModelFactory;
     _exigencyService        = exigencyService;
 }
 public WorkOrderController(
     IFileService fileService,
     IAppUserService appUserService,
     IAssignmentService assignmentService,
     IAssignmentModelFactory assignmentModelFactory,
     UserManager <AppUser> userManager,
     IReportService reportService,
     INotificationService notificationService,
     IMapper mapper) : base(userManager)
 {
     _notificationService    = notificationService;
     _fileService            = fileService;
     _appUserService         = appUserService;
     _assignmentService      = assignmentService;
     _assignmentModelFactory = assignmentModelFactory;
     _reportService          = reportService;
     _mapper = mapper;
 }