public ProblemServices(SULSDbContext context) { this._context = context; }
public SubmissionController(SULSDbContext context, UserManager <IdentityUser> userManager) { this._context = context; this._userManager = userManager; }
public ProblemController(SULSDbContext context, IProblemServices problemServices) { this._context = context; this._problemServices = problemServices; }