public ExceptEmployService(IExceptEmployRepository exceptEmployRepository, IFacultystaffService facultystaffService,
                            IFacultystaffInfoRepository facultystaffInfoRepository, IMapper iMapper, ISQLRepository repository)
 {
     this.exceptEmployRepository     = exceptEmployRepository;
     this.facultystaffService        = facultystaffService;
     this.facultystaffInfoRepository = facultystaffInfoRepository;
     _IMapper      = iMapper;
     sQLRepository = repository;
 }
 public FacultystaffController(IFacultystaffService service)
 {
     _facultystaffService = service;
 }