public GenericRepository(PhotoGalleryEntities dbContext)
 {
     _dbContext = dbContext;
     _dbSet     = _dbContext.Set <T>();
 }
 public GenericRepository()
 {
     _dbContext = new PhotoGalleryEntities();
     _dbSet     = _dbContext.Set <T>();
 }