Пример #1
0
 public ProblemServices(SULSDbContext context)
 {
     this._context = context;
 }
Пример #2
0
 public SubmissionController(SULSDbContext context, UserManager <IdentityUser> userManager)
 {
     this._context     = context;
     this._userManager = userManager;
 }
Пример #3
0
 public ProblemController(SULSDbContext context, IProblemServices problemServices)
 {
     this._context         = context;
     this._problemServices = problemServices;
 }