public MessageRepository(ZakaraiMeContext context)
 {
     this.context = context;
     dbSet        = context.Set <Message>();
 }
 public PictureRepository(ZakaraiMeContext context, IHostingEnvironment hostingEnvironment)
 {
     this.context = context;
     dbSet        = context.Set <Picture>();
     wwwRootPath  = hostingEnvironment.WebRootPath;
 }
Exemple #3
0
 public BaseRepository(ZakaraiMeContext context)
 {
     this.context = context;
     dbSet        = context.Set <TEntity>();
 }