13 lines
284 B
C#
13 lines
284 B
C#
namespace ProjectLibrary.Repositories
|
|
{
|
|
using ProjectLibrary.Entites;
|
|
|
|
public interface IOrderRepository
|
|
{
|
|
IEnumerable<Orders> ReadOrders();
|
|
Orders ReadOrderById(int id);
|
|
void CreateOrder(Orders order);
|
|
void DeleteOrder(int id);
|
|
}
|
|
}
|