Example #1
0
 public NaturalAreaRepository(AnimalPlanetDbContext context)
     : base(context)
 {
 }
Example #2
0
 public GenusRepository(AnimalPlanetDbContext context)
     : base(context)
 {
 }
Example #3
0
 public SpecieRepository(AnimalPlanetDbContext context)
     : base(context)
 {
 }
 public ReserveRepository(AnimalPlanetDbContext context)
     : base(context)
 {
 }
Example #5
0
 public PhylumRepository(AnimalPlanetDbContext context)
     : base(context)
 {
 }
 public FamilyRepository(AnimalPlanetDbContext context)
     : base(context)
 {
 }
Example #7
0
 public OrderRepository(AnimalPlanetDbContext context)
     : base(context)
 {
 }
 public GenericKeyRepository(AnimalPlanetDbContext context)
 {
     Context = context;
 }