public MarkController(IThemeMarkService themeMarkService, IExamMarkService examMarkService, SignInManager <User> signInManager, IMapper mapper) { _signInManager = signInManager; _themeMarkService = themeMarkService; _examMarkService = examMarkService; _mapper = mapper; }
public HomeController(UserManager <User> userManager, SignInManager <User> signInManager, IMapper mapper, IUserService userService, ICommentService commentService, IExamMarkService emarkService, IExamService examService, IGroupService groupService, IModuleService moduleService, IThemeService themeService, IThemeMarkService themeMarkService) { _userManager = userManager; _signInManager = signInManager; _userService = userService; _commentService = commentService; _examMarkService = emarkService; _examService = examService; _groupService = groupService; _moduleService = moduleService; _themeService = themeService; _themeMarkService = themeMarkService; _mapper = mapper; }