public CourseDefinitionsController(PortalTemeContext context, ICacheService cache, ICourseMapper courseMapper, IUrlSlugService slugService)
 {
     _context          = context;
     this.cache        = cache;
     this.courseMapper = courseMapper;
     this.slugService  = slugService;
 }
Пример #2
0
 public CoursesController(PortalTemeContext context, ICacheService cache, IAuthorizationService authorizationService, ICourseMapper courseMapper, UserManager <User> userManager)
 {
     _context   = context;
     this.cache = cache;
     this.authorizationService = authorizationService;
     this.courseMapper         = courseMapper;
     this.userManager          = userManager;
 }
Пример #3
0
 public AssignmentsController(PortalTemeContext context, UserManager <User> userManager, IAuthorizationService authorizationService, IAssignmentMapper assignmentMapper, ITaskMapper taskMapper, IUrlSlugService slugService)
 {
     _context                  = context;
     this.userManager          = userManager;
     this.authorizationService = authorizationService;
     this.assignmentMapper     = assignmentMapper;
     this.taskMapper           = taskMapper;
     this.slugService          = slugService;
 }
Пример #4
0
 public StudentAssignedTasksController(PortalTemeContext context, UserManager <User> userManager,
                                       ITaskMapper taskMapper,
                                       IFileService fileService,
                                       IAuthorizationService authorizationService)
 {
     _context                  = context;
     this.userManager          = userManager;
     this.taskMapper           = taskMapper;
     this.fileService          = fileService;
     this.authorizationService = authorizationService;
 }
 public AdminAuthorizatonHandler(UserManager <User> userManager, PortalTemeContext temeContext)
 {
 }
Пример #6
0
 public GroupsController(PortalTemeContext context, ICourseMapper courseMapper)
 {
     _context          = context;
     this.courseMapper = courseMapper;
 }
Пример #7
0
 public CourseAuthorizatonCrudHandler(UserManager <User> userManager, PortalTemeContext temeContext)
 {
     this.userManager = userManager;
     this.temeContext = temeContext;
 }
 public StudentTasksAuthorizatonCrudHandler(UserManager <User> userManager, PortalTemeContext temeContext)
 {
     courseHandler    = new CourseAuthorizatonCrudHandler(userManager, temeContext);
     this.userManager = userManager;
     this.temeContext = temeContext;
 }
Пример #9
0
 public StudyDomainsController(PortalTemeContext context, ICourseMapper courseMapper)
 {
     _context          = context;
     this.courseMapper = courseMapper;
 }
Пример #10
0
 public SubmissionsController(PortalTemeContext context, UserManager <User> userManager, IFileService fileService)
 {
     _context         = context;
     this.userManager = userManager;
     this.fileService = fileService;
 }
Пример #11
0
 public AcademicYearsController(PortalTemeContext context, ICourseMapper courseMapper)
 {
     _context          = context;
     this.courseMapper = courseMapper;
 }
Пример #12
0
 public AssignmentAuthorizatonCrudHandler(UserManager <User> userManager, PortalTemeContext temeContext)
 {
     courseHandler = new CourseAuthorizatonCrudHandler(userManager, temeContext);
 }