public PokemonReadRepository(PokemonsContext context) : base(context)
 {
 }
 protected BaseEntityFrameworkGenericReadRepository(PokemonsContext context)
 {
     this.entities = this.DecorateEntities(context.Set <T>());
 }
 public BattleReadRepository(PokemonsContext context) : base(context)
 {
 }
 public TrainerReadRepository(PokemonsContext context) : base(context)
 {
 }
Пример #5
0
 public EntityFrameworkGenericReadRepository(PokemonsContext context) : base(context)
 {
 }
 public EntityFrameworkGenericWriteRepository(PokemonsContext context)
 {
     this.context = context;
 }