public HealthService(IMapper iMapper, IHealthRepository healthRepository, IFacultystaffInfoRepository facultystaffInfoRepository, IStudentInfoRepository studentInfoRepository)
 {
     _IMapper = iMapper;
     this.healthRepository           = healthRepository;
     this.facultystaffInfoRepository = facultystaffInfoRepository;
     this.studentInfoRepository      = studentInfoRepository;
 }
Beispiel #2
0
 public loginService(IUserInfoRepository userInfoRepository, IStudentInfoRepository iStudentInfoRepository, IFacultystaffInfoRepository facultystaffInfoRepository, IMapper iMapper, IUser_GroupRepository groupRepository)
 {
     _userInfoRepository         = userInfoRepository;
     _iStudentInfoRepository     = iStudentInfoRepository;
     _facultystaffInfoRepository = facultystaffInfoRepository;
     _IMapper         = iMapper;
     _GroupRepository = groupRepository;
 }
 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 FacultystaffService(IStaffClassRelateRepository staffClassRelateRepository, IStaffRepository staffRepository, IFacultystaffInfoRepository facultystaffInfoRepository, IMapper iMapper, ISchoolInfoRepository schoolInfoRepository, IStaffStationRelateRepository staffStationRelateRepository, IUserInfoRepository userInfoRepository)
 {
     this.staffClassRelateRepository = staffClassRelateRepository;
     this.staffRepository            = staffRepository;
     _facultystaffInfoRepository     = facultystaffInfoRepository;
     _IMapper = iMapper;
     _schoolInfoRepository         = schoolInfoRepository;
     _staffStationRelateRepository = staffStationRelateRepository;
     _userInfoRepository           = userInfoRepository;
 }
Beispiel #5
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;
 }
Beispiel #6
0
 public ValideService(IStudentInfoRepository studentInfoRepository, IClassInfoRepository classInfoRepository, IGradeInfoRepository gradeInfoRespository, ISchoolInfoRepository schoolInfoRespository, IStationInfoRepository stationInfoRespository, IDepartInfoRepository departInfoRespository, IUserInfoRepository userInfoRepository, IReadLogRepository readLogRepository, IStaffClassRelateRepository staffClassRelateRepository, IFacultystaffInfoRepository facultystaffInfoRepository, IMapper iMapper)
 {
     _StudentInfoRepository      = studentInfoRepository;
     _classInfoRepository        = classInfoRepository;
     _gradeInfoRespository       = gradeInfoRespository;
     _schoolInfoRespository      = schoolInfoRespository;
     _stationInfoRespository     = stationInfoRespository;
     _departInfoRespository      = departInfoRespository;
     _userInfoRepository         = userInfoRepository;
     _readLogRepository          = readLogRepository;
     _staffClassRelateRepository = staffClassRelateRepository;
     _facultystaffInfoRepository = facultystaffInfoRepository;
     _IMapper = iMapper;
 }