Exemplo n.º 1
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;
 }
Exemplo n.º 2
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;
 }
 public ExamController(IExamService examService, IUserService userService)
 {
     this.examService = examService;
     this.userService = userService;
 }
Exemplo n.º 4
0
 public UsersService(EClinicDbContext db, UserManager <EClinicUser> userManager, IExamService examService)
 {
     this.db          = db;
     this.userManager = userManager;
     this.examService = examService;
 }
Exemplo n.º 5
0
 public GradeService(IReadRepository readRepository, IWriteRepository writeRepository,
                     IGradeMapper gradeMapper, IStudentService studentService, IExamService examService, IEmailService emailService)
 {
     this.readRepository  = readRepository;
     this.writeRepository = writeRepository;
     this.gradeMapper     = gradeMapper;
     this.studentService  = studentService;
     this.examService     = examService;
     this.emailService    = emailService;
 }
Exemplo n.º 6
0
 public ExamsController(IExamService examService) =>
 this.examService = examService;
 public QuestionOfExamController(IExamService examService, IQuestionOfExamService questionOfExamService, IOptionsOfQuestionService optionsOfQuestionService)
 {
     _examService              = examService;
     _questionOfExamService    = questionOfExamService;
     _optionsOfQuestionService = optionsOfQuestionService;
 }
Exemplo n.º 8
0
 public ExamController()
 {
     _candidateService = new CandidateService();
     _examService      = new ExamService();
 }
Exemplo n.º 9
0
 public ExamsController(IExamService examService, IClassroomAllocationService classroomAllocationService)
 {
     this.examService = examService ?? throw new ArgumentNullException();
     this.classroomAllocationService = classroomAllocationService ?? throw new ArgumentNullException();
 }
Exemplo n.º 10
0
 public ExamController(UserManager <User> userManager, IWiredHtmlAgilityService wiredAPIService, IExamService examService)
 {
     _userManager     = userManager;
     _wiredAPIService = wiredAPIService;
     _examService     = examService;
 }
Exemplo n.º 11
0
 public void InitInstance(IMessenger messager, UdpCarSignalSeedV4 server, IExamService examService)
 {
     this.Messenger          = messager;
     this.udpCarSignalSeedV4 = server;
     this.examService        = examService;
 }
Exemplo n.º 12
0
 public UsersController(IUsersService usersService, IExamService examService)
 {
     this.usersService = usersService;
     this.examService  = examService;
 }
Exemplo n.º 13
0
 public SemesterController(ILoggingService loggingService, ISemesterService semesterService,
     IExamService examService) : base(loggingService)
 {
     _semesterService = semesterService;
     _examService = examService;
 }
Exemplo n.º 14
0
 public ExamController(ILogger <ExamController> logger, IExamService service)
 {
     _logger  = logger;
     _service = service;
 }
Exemplo n.º 15
0
 public ExamMap(IExamService service)
 {
     this.examService = service;
     this.mapper      = GetMap();
 }
Exemplo n.º 16
0
 public CoursesService(ICourseRepository repository, IUserRepository userRepository, IMapper mapper, IExamService examService)
 {
     _repository     = repository;
     _userRepository = userRepository;
     _mapper         = mapper;
     _examService    = examService;
 }
Exemplo n.º 17
0
 public ExamController(IExamService examService, IExamRepository examRepository, ITestRepository testRepository)
 {
     this.examRepository = examRepository;
     this.testRepository = testRepository;
     this.examService    = examService;
 }
Exemplo n.º 18
0
 public ExamsController(IExamService examService, IGradeService gradeService, ICourseService courseService)
 {
     this.examService = examService;
     this.gradeService = gradeService;
     this.courseService = courseService;
 }
 public ExamController(IExamService examService, IMapper mapper)
 {
     _examService = examService;
     _mapper      = mapper;
 }
Exemplo n.º 20
0
 public DownloadController(IExamService examService, IExamViewModelMapper examViewModelMapper)
 {
     _examService         = examService;
     _examViewModelMapper = examViewModelMapper;
 }
 public ExamsController(IExamService service, IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
 }
Exemplo n.º 22
0
 public ExamsController(IUserService user, IExamService examService, IExamPaperService examPaperService) : base(user)
 {
     this.examService      = examService;
     this.examPaperService = examPaperService;
 }
Exemplo n.º 23
0
 public BankService(IQuestionRepository questionRepository, IExamRepository examRepository, IExamService examService, IBankRepository bankRepository, IAnswerRepository answerRepository)
 {
     this.questionRepository = questionRepository;
     this.examRepository     = examRepository;
     this.examService        = examService;
     this.bankRepository     = bankRepository;
     this.answerRepository   = answerRepository;
 }
Exemplo n.º 24
0
 public ExamController(IUserService userService, IExamService examService)
 {
     _UserService = userService;
     _ExamService = examService;
 }
Exemplo n.º 25
0
 public StatisticService(IScoreService scoreService, IReviewService reviewService, IExamService examService, IScoreRepository scoreRepository, IExamRepository examRepository, IUserRepository userRepository)
 {
     this.scoreService    = scoreService;
     this.reviewService   = reviewService;
     this.examService     = examService;
     this.scoreRepository = scoreRepository;
     this.examRepository  = examRepository;
     this.userRepository  = userRepository;
 }
Exemplo n.º 26
0
 public ExamController(IExamService examService, IQuestionService questionService)
 {
     _examService     = examService;
     _questionService = questionService;
 }
Exemplo n.º 27
0
 public ExamController(IExamService examService)
 {
     this.examService = examService;
 }
Exemplo n.º 28
0
 public ExamsController(IExamService examService)
 {
     _examService = examService;
 }
Exemplo n.º 29
0
 public ExamsController(IExamService examService, IMemoryCache cache)
 {
     _examService = examService;
     _cache       = cache;
 }
Exemplo n.º 30
0
 public ExamController(IQuestionRepository questionRepository, IAnswerRepository answerRepository, IExamRepository examRepository, IBankRepository bankRepository, IExamService examService, IExamineeService examineeService)
 {
     this.questionRepository = questionRepository;
     this.answerRepository   = answerRepository;
     this.examRepository     = examRepository;
     this.bankRepository     = bankRepository;
     this.examService        = examService;
     this.examineeService    = examineeService;
 }
Exemplo n.º 31
0
 //for injection
 public ExamController(ICandidateService candidateService, IExamService examService)
 {
     _candidateService = candidateService;
     _examService      = examService;
 }
Exemplo n.º 32
0
 public ExamController(IExamService examService)
 {
     this.examService = examService;
 }
Exemplo n.º 33
0
 public StartController(IQuestionService questionService, IExamService examService)
 {
     _questionService = questionService;
     _examService     = examService;
 }