2024-12-20 20:09:17 +04:00
|
|
|
|
using LDBproject.Entities;
|
|
|
|
|
|
|
|
|
|
namespace LDBproject.Repositories;
|
|
|
|
|
|
|
|
|
|
public interface IOrderRep
|
|
|
|
|
{
|
|
|
|
|
IEnumerable<Order> GetOrdersInfo(
|
|
|
|
|
int? librarianID = null, int? orderID = null, int? customerID = null);
|
|
|
|
|
|
|
|
|
|
void CreateOrder(Order order);
|
|
|
|
|
|
2024-12-20 23:05:27 +04:00
|
|
|
|
void UpdateOrderInfo(Order order);
|
|
|
|
|
|
2024-12-20 20:09:17 +04:00
|
|
|
|
void DeleteOrderinfo(int orderID);
|
|
|
|
|
}
|