public ProblemServices(SULSDbContext context)
 {
     this._context = context;
 }
Beispiel #2
0
 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;
 }