public DayAndNightService(IDayandNightRepository dayandNightRepository, IStaffClassRelateRepository staffClassRelateRepository
                           , IMapper mapper, ISchoolInfoRepository schoolInfo)
 {
     this.dayandNightRepository      = dayandNightRepository;
     this.staffClassRelateRepository = staffClassRelateRepository;
     this.mapper          = mapper;
     schoolInfoRepository = schoolInfo;
 }
Ejemplo 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;
 }