Exemplo n.º 1
0
 HollywoodBetTestContext _db; // HACK: IEventDetailStatuservice MUST be used, will fix soon
 public EventDetailStatusController(HollywoodBetTestContext db)
 {
     _db = db;
     //this._service = service;
 }
Exemplo n.º 2
0
 HollywoodBetTestContext _db; // HACK: ITournamentService MUST be used, will fix soon
 public TournamentsController(HollywoodBetTestContext db)
 {
     _db = db;
     //this._service = service;
 }
Exemplo n.º 3
0
 public BaseRepository(HollywoodBetTestContext context)
 {
     this.context = context;
     this.dbSet   = context.Set <TEntity>();
 }
Exemplo n.º 4
0
 public TournamentRepository(HollywoodBetTestContext context) : base(context)
 {
 }