Guest User

Untitled

a guest
Apr 20th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public class ApiDbContext : DbContext
  2. {
  3. public ApiDbContext() : base("Name=DbConnection")
  4. {
  5. }
  6. }
  7.  
  8. public class RepositoryBase<TEntity> : IDisposable, IRepositoryBase<TEntity> where TEntity : class
  9. {
  10. ApiDbContext context = new ApiDbContext();
  11. }
Add Comment
Please, Sign In to add comment