using LDBproject.Entities; namespace LDBproject.Repositories; public interface IOrderRep { IEnumerable GetOrdersInfo( int? librarianID = null, int? orderID = null, int? customerID = null); void CreateOrder(Order order); void UpdateOrderInfo(Order order); void DeleteOrderinfo(int orderID); }