public GenericRepository(EventManagerDbEntities db)
 {
     this.db = db;
     table   = db.Set <T>();
 }
 public GenericRepository()
 {
     this.db = new EventManagerDbEntities();
     table   = db.Set <T>();
 }