public BaseRepository(GameCollectionDbContext context)
 {
     this.context = context;
 }
 public CollectionsRepository(GameCollectionDbContext context) : base(context)
 {
 }
Exemplo n.º 3
0
 public UnitOfWork(GameCollectionDbContext context)
 {
     this.context = context;
 }