13 lines
366 B
C#
13 lines
366 B
C#
|
namespace ProjectLibrary.Repositories
|
|||
|
{
|
|||
|
using ProjectLibrary.Entites;
|
|||
|
using ProjectLibrary.Entities;
|
|||
|
|
|||
|
public interface IBookOrdersRepository
|
|||
|
{
|
|||
|
IEnumerable<BookOrders> ReadBookOrders(int? bookId = null, int? orderId = null);
|
|||
|
void CreateBookOrder(BookOrders bookOrder);
|
|||
|
void DeleteBookOrder(int bookId, int orderId);
|
|||
|
}
|
|||
|
}
|