16 lines
331 B
C#
Raw Normal View History

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);
void UpdateOrderInfo(Order order);
2024-12-20 20:09:17 +04:00
void DeleteOrderinfo(int orderID);
}