示例#1
0
 public EFRespository(ImageGalleryContext dbContext)
 {
     _dbContext = dbContext;
     dbset      = dbContext.Set <T>();
 }
示例#2
0
 public ImageRepository(ImageGalleryContext imageGalleryContext)
 {
     this.imageGalleryContext = imageGalleryContext;
 }
示例#3
0
 public ImageDetailsRepository(ImageGalleryContext dbContext) : base(dbContext)
 {
 }