public SpecialistController(ISpecialistService specialistService, IAssignorService assignorService, IAssignmentService assignmentService, IMapper mapper)
 {
     this.specialistService = specialistService;
     this.assignorService   = assignorService;
     this.assignmentService = assignmentService;
     this.mapper            = mapper;
 }
 public AssignmentService(IAsyncRepository <Assignment> repository, ISpecialistService specialistService, IAssignorService assignorService)
 {
     this.assignmentRepository = repository;
     this.specialistService    = specialistService;
     this.assignorService      = assignorService;
 }