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;
 }
Esempio n. 2
0
 public FileService(IMapper iMapper, IFileRepository fileRepository, IDayandNightRepository dayandNightRepository, IStudentInfoRepository studentInfoRepository, IFacultystaffInfoRepository facultystaffInfoRepository, IExceptStudentRepository exceptStudentRepository, IExceptEmployRepository exceptEmployRepository, IValideService valideService, IImageRepository imageRepository)
 {
     _IMapper                     = iMapper;
     _fileRepository              = fileRepository;
     _dayandNightRepository       = dayandNightRepository;
     _studentInfoRepository       = studentInfoRepository;
     _facultystaffInfoRepository  = facultystaffInfoRepository;
     this.exceptStudentRepository = exceptStudentRepository;
     this.exceptEmployRepository  = exceptEmployRepository;
     _valideService               = valideService;
     _imageRepository             = imageRepository;
 }