10 lines
306 B
C#
10 lines
306 B
C#
|
using Publication.Entites;
|
|||
|
|
|||
|
namespace Publication.Repositories;
|
|||
|
|
|||
|
public interface IOrderRepository
|
|||
|
{
|
|||
|
IEnumerable<Orders> ReadOrders(DateTime? dateForm = null, DateTime? dateTo = null, int? orderId = null, int? customerId = null, int? publishingHouseId = null);
|
|||
|
void CreateOrder(Orders order);
|
|||
|
}
|