14 lines
291 B
C#
Raw Permalink 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 DeleteOrderinfo(int orderID);
}