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; }
public BaseRepository(ZakaraiMeContext context) { this.context = context; dbSet = context.Set <TEntity>(); }