ProjectLib/ProjectLibrary/Repositores/IBookOrderRepository.cs

13 lines
368 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
{
2024-11-19 14:49:58 +04:00
IEnumerable<Book_Orders> ReadBookOrders(int? bookId = null, int? orderId = null);
void CreateBookOrder(Book_Orders bookOrder);
2024-11-12 23:13:20 +04:00
void DeleteBookOrder(int bookId, int orderId);
}
}