public CourseController(ICommandBus commandBus, IQueryBus queryBus, lmsContext context, IUserResolver userResolver) { _commandBus = commandBus; _queryBus = queryBus; _context = context; _userResolver = userResolver; }
public CoursesController(lmsContext context, ICourseRepository courseRepository, ICourseOutlineRepository courseOutlineRepository, ICourseOutcomeRepository courseOutcomeRepository, ICourseAssessmentRepository courseAssessmentRepository, ICompetenciesRepository courseCompetenciesRepository, ICourseEvaluationRepository courseEvaluationRepository, IUserRepository userRepository, IValidationService validationService, IEncryptionService encryptionService, IFileDirectory fileDirectory, IHostingEnvironment hostingEnvironment) { _context = context; _courseRepository = courseRepository; _courseOutlineRepository = courseOutlineRepository; _courseAssessmentRepository = courseAssessmentRepository; _courseCompetenciesRepository = courseCompetenciesRepository; _courseEvaluationRepository = courseEvaluationRepository; _courseOutcomeRepository = courseOutcomeRepository; _userRepository = userRepository; _validationService = validationService; _encryptionService = encryptionService; _fileDirectory = fileDirectory; _hostingEnvironment = hostingEnvironment; _NotFound = new GenericResult { Response = false, Message = "Record not found" }; _UnAuthorized = new GenericResult { Response = false, Message = "You dont have a permission to access this module" }; }
public CourseOutlineRepository(lmsContext context, IFileDirectory fileDirectory, IHostingEnvironment hostingEnvironment) { _context = context; _fileDirectory = fileDirectory; _hostingEnvironment = hostingEnvironment; }
public DashboardController(lmsContext context, IUserRepository userRepository, IAuthenticationService authenticationService) { _context = context; _userRepository = userRepository; _authenticationService = authenticationService; _NotFound = new GenericResult { Response = false, Message = "Record not found" }; }
public CourseInstructorController(lmsContext context, IInstructorRepository instructorRepository, IValidationService validationService) { _context = context; _instructorRepository = instructorRepository; _validationService = validationService; _NotFound = new GenericResult { Response = false, Message = "Record not found" }; }
public CourseAssessmentController(lmsContext context, ICourseAssessmentRepository courseAssessmentRepository, IValidationService validationService) { _context = context; _courseAssessmentRepository = courseAssessmentRepository; _validationService = validationService; _NotFound = new GenericResult { Response = false, Message = "Record not found" }; }
public CourseRepository(lmsContext context, IEncryptionService encryptionService, IFileDirectory fileDirectory, IHostingEnvironment hostingEnvironment) { _context = context; _encryptionService = encryptionService; _hostingEnvironment = hostingEnvironment; _fileDirectory = fileDirectory; }
public UserController( IUserService userService, IMapper mapper, IOptions <LMSCoreWebAPI.Helper.Appsettings> appSettings, lmsContext context) { _userService = userService; _mapper = mapper; _appSettings = appSettings.Value; _context = context; }
public CourseEvaluationController(lmsContext context, ICourseEvaluationRepository courseEvaluationRepository, IValidationService validationService) { _context = context; _courseEvaluationRepository = courseEvaluationRepository; _validationService = validationService; _NotFound = new GenericResult { Response = false, Message = "Record not found" }; _Duplicate = new GenericResult { Response = false, Message = "Record already exists. Cannot enter duplicate entry" }; }
public UsersController(lmsContext context, IUserRepository userRepository, IEncryptionService encryptionService, IValidationService validationService) { _context = context; _userRepository = userRepository; _encryptionService = encryptionService; _validationService = validationService; _NotFound = new GenericResult { Response = false, Message = "Record not found" }; _UnAuthorized = new GenericResult { Response = false, Message = "You dont have a permission to access this module" }; }
public SettingsController(lmsContext context, IUserGroupRepository userGroupRepository, IGroupRepository groupRepository, IStatusRepository statusRepository, IValidationService validationService) { _context = context; _userGroupRepository = userGroupRepository; _groupRepository = groupRepository; _statusRepository = statusRepository; _validationService = validationService; _NotFound = new GenericResult { Response = false, Message = "Record not found" }; _Duplicate = new GenericResult { Response = false, Message = "Record already exists. Cannot enter duplicate entry" }; }
public EnrollmentController(lmsContext context, IEnrollmentRepository enrollmentRepository, IInstructorRepository instructorRepository, ILearnerRepository learnerRepository, IValidationService validationService) { _context = context; _enrollmentRepository = enrollmentRepository; _instructorRepository = instructorRepository; _learnerRepository = learnerRepository; _validationService = validationService; _NotFound = new GenericResult { Response = false, Message = "Record not found" }; }
public PicklistController( lmsContext context, //ISessionTypeRepository sessionTypeRepository, //ITagsRepository tagsRepository, //ILocationRepository locationRepository, //IDepartmentRepository departmentRepository, //ICategoryRepository categoryRepository, IAppraisalRepository appraisalRepository, //ILanguageRepository languageRepository, //IUserRepository userRepository, //ILevelRepository levelRepository, //ITypesRepository typesRepository, IValidationService validationService, IAuthenticationService authenticationService ) { _context = context; //_sessionTypeRepository = sessionTypeRepository; //_tagsRepository = tagsRepository; //_locationRepository = locationRepository; //_departmentRepository = departmentRepository; //_categoryRepository = categoryRepository; _appraisalRepository = appraisalRepository; //_languageRepository = languageRepository; //_userRepository = userRepository; //_levelRepository = levelRepository; //_typesRepository = typesRepository; _validationService = validationService; _authenticationService = authenticationService; _NotFound = new GenericResult { Response = false, Message = "Record not found" }; _Duplicate = new GenericResult { Response = false, Message = "Record already exists. Cannot enter duplicate entry" }; _UnAuthorized = new GenericResult { Response = false, Message = "You dont have a permission to access this module" }; }
public CourseCommandHandler(lmsContext context, IConfiguration configuration) { _context = context; _configuration = configuration; }
public EntityBaseRepository(lmsContext context) { _context = context; }
public PhieumuonController(lmsContext context) { _context = context; }
public AuthenticationQueryHandler(lmsContext context) { _context = context; }
public CourseQueryHandler(lmsContext context) { _context = context; }
public InstructorRepository(lmsContext context) { _context = context; }
public ExamQueryHandler(lmsContext context) { _context = context; }
public CourseAssessmentRepository(lmsContext context) { _context = context; }
public ChatQueryHandler(lmsContext context) { _context = context; }
public DattruocController(lmsContext context) { _context = context; }
public LevelRepository(lmsContext context) { _context = context; }
public NhomsachController(lmsContext context) { _context = context; }
public UserCommandHandler(lmsContext context) { _context = context; }
public TagsRepository(lmsContext context) { _context = context; }
public UserResolver(IHttpContextAccessor accessor, lmsContext context) { _accessor = accessor; _context = context; }
public EnrollmentRepository(lmsContext context) { _context = context; }
public AuthenticationService(IOptions <AppSettings> appSettings, lmsContext context, IEncryptionService encryptionService) { _appSettings = appSettings.Value; _encryptionService = encryptionService; _context = context; }