public UnitOfWork(BookShopModel context) { this.context = context; }
public GenericRepository(BookShopModel context) { this.context = context; this.dbSet = context.Set <TEntity>(); }
public PublisherRepository(BookShopModel context) { this.context = context; }
public BookRepository(BookShopModel context) { this.context = context; }
public ReservRepository(BookShopModel context) { this.context = context; }
public AuthorRepository(BookShopModel context) { this.context = context; }
public UserTypeRepository(BookShopModel context) { this.context = context; }
public ProductRepository(BookShopModel context) { this.context = context; }