Пример #1
0
 public Proj2Aalst_G3DataInitializer(
     ApplicationDbContext dbContext,
     IToornamentService toornamentService,
     UserManager <ApplicationUser> userManager)
 {
     this.toornamentService = toornamentService;
     this.dbContext         = dbContext;
     this.userManager       = userManager;
 }
Пример #2
0
 public TournamentRepository(ApplicationDbContext context,
                             IToornamentService toornamentService)
 {
     this.context           = context;
     this.toornamentService = toornamentService;
 }