コード例 #1
0
        public StudentsController(IStudentService StudentsService, ILookupService lookupService,
            IStudentsParentService StudentsParentService, IStudentsMedicalService StudentsMedicalService,
            IStudentsTransportService StudentsTransportService, IStudentsDocsService StudentsDocsService,
            IAcademicYearService AcademicYearService, IClassService ClassService,
            ISectionService SectionService, IBatchService BatchService, IAreaService AreaService,
            IStudentsAttendanceService StudentsAttendanceService, IStudentsClassService StudentsClassService)
            : base()
        {
            this._StudentService = StudentsService;
            this._StudentsParentService = StudentsParentService;
            this._StudentsMedicalService = StudentsMedicalService;
            this._StudentsTransportService = StudentsTransportService;
            this._StudentsDocsService = StudentsDocsService;
            this._StudentsClassService = StudentsClassService;

            this._AcademicYearService = AcademicYearService;
            this._ClassService = ClassService;
            this._SectionService = SectionService;
            this._BatchService = BatchService;
            this._AreaService = AreaService;

            this._lookupService = lookupService;

            this._StudentsAttendanceService = StudentsAttendanceService;
        }
コード例 #2
0
 public SectionController(ISectionService SectionService, ILookupService lookupService, IClassService ClassService)
     : base()
 {
     this._SectionService = SectionService;
     this._lookupService = lookupService;
     this._ClassService = ClassService;
 }
コード例 #3
0
 public ClassController(IClassService ClassService, ILookupService lookupService, IClassSubjectsService IClassSubjectsService)
     : base()
 {
     this._ClassService = ClassService;
     this._lookupService = lookupService;
     this._IClassSubjectsService = IClassSubjectsService;
 }
コード例 #4
0
 public ClassController()
 {
     UserInformationFactory.SetInstance(UserInformation<User, WhoIsOnline>.Instance(new HttpContextWrapper(System.Web.HttpContext.Current), new WhoIsOnlineService<User, WhoIsOnline>(new EntityWhoIsOnlineRepository()), new GetUserStrategy()));
     theValidationDictionary = new ModelStateWrapper(this.ModelState);
     theClassService = new ClassService(theValidationDictionary);
     theUniversityService = new UniversityService(theValidationDictionary);
 }
コード例 #5
0
 public DashboardController(IClassService classService,
     IRoleManagementService roleManagementService,
     IFilesProxyAdapter fileProxyAdapter,
     IStatisticsServicce statisticsService)
 {
     _classService = classService;
     _roleManagementService = roleManagementService;
     _fileProxyAdapter = fileProxyAdapter;
     _statisticsService = statisticsService;
 }
コード例 #6
0
 public FeeStructureController(IFeeStructureService FeeStructureService, ILookupService lookupService,
     IAcademicYearService AcademicYearService, IClassService ClassService,
     IFeeHeadService FeeHeadService)
     : base()
 {
     this._FeeStructureService = FeeStructureService;
     this._lookupService = lookupService;
     this._AcademicYearService = AcademicYearService;
     this._ClassService = ClassService;
     this._FeeHeadService = FeeHeadService;
 }
コード例 #7
0
 public ExamController(IExamService ExamService, ILookupService lookupService, IClassService ClassService, IAcademicYearService AcademicYearService, IExamSubjectsService IExamSubjectsService, IExamGradesService IExamGradesService, IExamMarksDetailIsService IExamMarksDetailIsService, IExamMarksService IExamMarksService)
     : base()
 {
     this._ExamService = ExamService;
     this._lookupService = lookupService;
     this._ClassService = ClassService;
     this._AcademicYearService = AcademicYearService;
     this._IExamSubjectsService = IExamSubjectsService;
     this._IExamGradesService = IExamGradesService;
     this._IExamMarksDetailIsService = IExamMarksDetailIsService;
     this._IExamMarksService = IExamMarksService;
 }
コード例 #8
0
 public ClassController(IClassTimeService classTimeService,
     IClassService classService,
     IUserService userService,
     ICourseService courseService,
     IClassTypeService classTypeService)
 {
     _userService = userService;
     _classTypeService = classTypeService;
     _courseService = courseService;
     _classService = classService;
     _classTimeService = classTimeService;
 }
コード例 #9
0
        public EnquiryController(IEnquiryService EnquiryService, ILookupService lookupService,
            IAcademicYearService AcademicYearService, IClassService ClassService,
            ISectionService SectionService)
            : base()
        {
            this._EnquiryService = EnquiryService;
            this._lookupService = lookupService;

            this._AcademicYearService = AcademicYearService;
            this._ClassService = ClassService;
            this._SectionService = SectionService;
        }
コード例 #10
0
 public SessionService(IUnitOfWork uow,
     IClassService classService,
     ISessionMaterialService sessionMaterial,
     Lazy<INotificationService> notificationService,
     IFilesProxyAdapter filesProxyAdapter)
 {
     _uow = uow;
     _classService = classService;
     _classSession = uow.Set<ClassSession>();
     _notificationService = notificationService;
     _filesProxyAdapter = filesProxyAdapter;
     _sessionMaterial = sessionMaterial;
 }
コード例 #11
0
        public ComplaintController(IComplaintService ComplaintService, ILookupService lookupService,
            IAcademicYearService AcademicYearService, IClassService ClassService,
            ISectionService SectionService, IStudentService StudentService)
            : base()
        {
            this._ComplaintService = ComplaintService;
            this._lookupService = lookupService;

            this._AcademicYearService = AcademicYearService;
            this._ClassService = ClassService;
            this._SectionService = SectionService;
            this._StudentService = StudentService;
        }
コード例 #12
0
 public ReportController(IExamService ExamService, ILookupService lookupService, IExamSubjectsService IExamSubjectsService, IExamMarksDetailIsService IExamMarksDetailIsService, IAcademicYearService AcademicYearService, IClassService ClassService,
     ISectionService SectionService, IExamMarksService IExamMarksService)
     : base()
 {
     this._ExamService = ExamService;
     this._lookupService = lookupService;
     this._IExamSubjectsService = IExamSubjectsService;
     _IExamMarksDetailIsService = IExamMarksDetailIsService;
     this._AcademicYearService = AcademicYearService;
     this._ClassService = ClassService;
     this._SectionService = SectionService;
     _IExamMarksService = IExamMarksService;
 }
コード例 #13
0
 public FeeConcessionController(IFeeConcessionService FeeConcessionService, ILookupService lookupService,
     IAcademicYearService AcademicYearService, IClassService ClassService,
     ISectionService SectionService, IBatchService BatchService, IFeeHeadService FeeHeadService,
     IStudentService StudentService, IFeeStructureService FeeStructureService)
     : base()
 {
     this._FeeConcessionService = FeeConcessionService;
     this._lookupService = lookupService;
     this._AcademicYearService = AcademicYearService;
     this._ClassService = ClassService;
     this._SectionService = SectionService;
     this._BatchService = BatchService;
     this._FeeHeadService = FeeHeadService;
     this._StudentService = StudentService;
     this._feeStructureService = FeeStructureService;
 }
コード例 #14
0
        public StudentService(IStudentRepository StudentRepository, IFileHandler FileHandler,
            IStudentsParentService StudentsParentService, IStudentsMedicalService StudentsMedicalService,
            IStudentsTransportService StudentsTransportService, IAcademicYearService AcademicYearService,
            IClassService ClassService, ISectionService SectionService, IBatchService BatchService,
            IAreaService AreaService)
        {
            this._StudentRepository = StudentRepository;
            this._iFileHandler = FileHandler;
            this._IStudentsParentService = StudentsParentService;
            this._IStudentsMedicalService = StudentsMedicalService;
            this._IStudentsTransportService = StudentsTransportService;

            this._AcademicYearService = AcademicYearService;
            this._ClassService = ClassService;
            this._SectionService = SectionService;
            this._BatchService = BatchService;
            this._AreaService = AreaService;
        }
コード例 #15
0
 public FeeReceiptController(IFeeReceiptService FeeReceiptService, ILookupService lookupService,
     IAcademicYearService AcademicYearService, IClassService ClassService,
     ISectionService SectionService, IBatchService BatchService, IFeeHeadService FeeHeadService,
     IStudentService StudentService, IFeeStructureService FeeStructureService,
     IFeeHeadOptionalEntryService FeeHeadOptionalEntryService, ISchoolService SchoolService)
     : base()
 {
     this._FeeReceiptService = FeeReceiptService;
     this._lookupService = lookupService;
     this._AcademicYearService = AcademicYearService;
     this._ClassService = ClassService;
     this._SectionService = SectionService;
     this._BatchService = BatchService;
     this._FeeHeadService = FeeHeadService;
     this._StudentService = StudentService;
     this._feeStructureService = FeeStructureService;
     this._FeeHeadOptionalEntryService = FeeHeadOptionalEntryService;
     this._SchoolService = SchoolService;
 }
コード例 #16
0
 public ClassController(IClassService classServie)
 {
     _classServie = classServie;
 }
コード例 #17
0
 public UserInClassService(IUnitOfWork uow, IClassService classService)
 {
     _uow = uow;
     _userInClass = uow.Set<UserInClass>();
     _classService = classService;
 }
コード例 #18
0
 public ClassController(IClassService iClassprofileService)
 {
     _iClassprofileService = iClassprofileService;
 }
コード例 #19
0
 public ClassController(IClassService classService)
 {
     this.ClassService = classService;
 }
コード例 #20
0
 public UserInClassController(IUserInClassService userInClassService, IClassService classService)
 {
     _userInClassService = userInClassService;
     _classService = classService;
 }
コード例 #21
0
 public ClassController(IClassService service, IOptionsMonitor <ModuleCommonOptions> commonOption, IOptionsMonitor <CodeGeneratorOptions> codeGeneratorOptions)
 {
     _service = service;
     _codeGeneratorOptions = codeGeneratorOptions.CurrentValue;
     _commonOptions        = commonOption.CurrentValue;
 }
コード例 #22
0
 public InfoArticeController(IBaseManager BaseManager, IClassService ClassService, IArticeService ArticeService) : base(BaseManager)
 {
     this.BaseManager   = BaseManager;
     this.ClassService  = ClassService;
     this.ArticeService = ArticeService;
 }
コード例 #23
0
 public ReportController(IResultService resultService, IStudentService studentService, IClassService classService, ISubjectService subjectService, ISemesterService semesterService, IReportService reportService, IExistHelper exist)
 {
     _resultService   = resultService;
     _studentService  = studentService;
     _classService    = classService;
     _subjectService  = subjectService;
     _semesterService = semesterService;
     _reportService   = reportService;
     resp             = new ResponseHelper();
 }
コード例 #24
0
 public ClassController(IClassService classService, IUserService userService)
 {
     this.classService = classService;
     this.userService  = userService;
 }
コード例 #25
0
 public FlatteningService(IRaceService raceService, IBackgroundService backgroundService, IClassService classService, RPGAContext context)
 {
     RaceService       = raceService;
     BackgroundService = backgroundService;
     ClassService      = classService;
     _context          = context;
 }
コード例 #26
0
 public ClassesController(IClassService iClassService)
 {
     _iClassService = iClassService;
 }
コード例 #27
0
 public HomeController(IClassService classService, IUnitOfWork unitOfWork)
 {
     _classService = classService;
     _unitOfWork   = unitOfWork;
 }
コード例 #28
0
ファイル: TutorController.cs プロジェクト: qnamute/TutorWeb
 public TutorController(UserManager <User> userManager, IRegisterClassService registerClassService, IClassService classService)
 {
     _userManager          = userManager;
     _registerClassService = registerClassService;
     _classService         = classService;
 }
コード例 #29
0
 public CourseController(ICourseService courseService, IClassService classService, ISeminarService seminarService)
 {
     this.courseService  = courseService;
     this.classService   = classService;
     this.seminarService = seminarService;
 }
コード例 #30
0
 public ClassController(IClassService _classService)
 {
     classService = _classService;
 }
コード例 #31
0
 public ClassController(IMapper mapper, IClassService classService)
 {
     _mapper       = mapper;
     _classService = classService;
 }
コード例 #32
0
 public SubjectController(ISubjectService service, IUserService userService, IInstructorService instructorService, IStudentService studentService, ICoordinatorService coordinatorService, IClassService classService, ICourseService courseService, IOwnerService ownerService)
 {
     this._service            = service;
     this._userService        = userService;
     this._instructorService  = instructorService;
     this._studentService     = studentService;
     this._coordinatorService = coordinatorService;
     this._classService       = classService;
     this._courseService      = courseService;
     this._ownerService       = ownerService;
 }
コード例 #33
0
 public InfoClassController(IBaseApiManager BaseApiManager, IHttpContextAccessor Accessor, IClassService ClassService) : base(BaseApiManager)
 {
     this.BaseApiManager = BaseApiManager;
     this.Accessor       = Accessor;
     this.ClassService   = ClassService;
 }
コード例 #34
0
 public ValuesController(IClassService service)
 {
     _service = service;
 }
コード例 #35
0
 public EducationController(IUserService IUserService, IEducationService IEducationService, IClassService IClassService, ICollegeService ICollegeService, IDisciplineService IDisciplineService,
                            IEducationCategoryService IEducationCategoryService, ISpecializationService ISpecializationService, IUniversityService IUniversityService, IEducationCategoryUniversityBoardMappingService IEducationCategoryUniversityBoardMappingService)
 {
     this._IUserService      = IUserService;
     this._IEducationService = IEducationService;
     _educationDetails       = new EmployeeEducationDetail();
     this._IClassService     = IClassService;
     _class = new Master_Class();
     this._ICollegeService = ICollegeService;
     _college = new Master_College();
     this._IDisciplineService = IDisciplineService;
     _discipline = new Master_Discipline();
     this._IEducationCategoryService = IEducationCategoryService;
     _educationCategory           = new Master_EducationCategory();
     this._ISpecializationService = ISpecializationService;
     _specialization          = new Master_Specialization();
     this._IUniversityService = IUniversityService;
     _university = new Master_University();
     this._IEducationCategoryUniversityBoardMappingService = IEducationCategoryUniversityBoardMappingService;
     _educationCategoryUniversityBoardMapping = new EducationCategoryUniversityBoardMapping();
 }
コード例 #36
0
 public ClassesController(IClassService classService)
 {
     _classService = classService;
 }
コード例 #37
0
 public void CleanUp()
 {
     _mockClassList   = null;
     _classService    = null;
     _classController = null;
 }
コード例 #38
0
 public ClassController()
 {
     _classService = new ClassService();
 }
コード例 #39
0
 public ClassesController(IClassService classService, ILogExceptionService logExceptionService)
 {
     _classService        = classService;
     _logExceptionService = logExceptionService;
 }
コード例 #40
0
 public GradeController(IClassService classService)
 {
     _classService = classService;
 }
コード例 #41
0
 public InfoPageController(IBaseManager BaseManager, IClassService ClassService, IPageService PageService) : base(BaseManager)
 {
     this.BaseManager  = BaseManager;
     this.ClassService = ClassService;
     this.PageService  = PageService;
 }
コード例 #42
0
 public ClassAPIController(IClassService classService)
 {
     this._classService = classService;
 }
コード例 #43
0
 public UserController(IUserService userService, IClassService classService)
 {
     _classService = classService;
     _userService = userService;
 }
コード例 #44
0
 public ClassController(IConfiguration configuration, ILogger <ClassController> logger, IClassService classService)
 {
     this.configuration = configuration;
     this.logger        = logger;
     this.classService  = classService;
 }
コード例 #45
0
 public InfoClassController(IBaseManager BaseManager, IClassService ClassService) : base(BaseManager)
 {
     this.BaseManager  = BaseManager;
     this.ClassService = ClassService;
 }
コード例 #46
0
 public ClassApiService(IClassService classService)
 {
     _classService = classService;
 }
コード例 #47
0
 public ClassServiceClient()
 {
     Impl = new ClassServiceImpl(new ClassRepository());
 }
コード例 #48
0
 public TeacherController(IUserService usr, IClassService cls)
 {
     this.userService  = usr;
     this.classService = cls;
 }
コード例 #49
0
 public TaskController(ITaskService taskService, IClassService classService)
 {
     _classService = classService;
     _taskService = taskService;
 }