ProjectLib/ProjectLibrary/Repositores/IBookOrderRepository.cs

13 lines
366 B
C#
Raw Normal View History

2024-11-12 23:13:20 +04:00
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);
}
}