namespace ProjectLibrary.Repositories { using ProjectLibrary.Entites; using ProjectLibrary.Entities; public interface IBookOrdersRepository { IEnumerable ReadBookOrders(int? bookId = null, int? orderId = null); void CreateBookOrder(BookOrders bookOrder); void DeleteBookOrder(int bookId, int orderId); } }