public GiderGrubuRepository(WebContext dbContect)
 {
     this.DbContext = dbContect;
 }
Example #2
0
 public PlaceRepository(WebContext dbContext) : base()
 {
     this.DbContext = dbContext;
     this.DbSet     = DbContext.Set <Place>();
 }