39 lines
754 B
C#
Raw Normal View History

2024-11-12 23:13:20 +04:00
using ProjectLibrary.Entites;
using ProjectLibrary.Entities;
using ProjectLibrary.Repositories;
using System.Collections.Generic;
using System.Linq;
namespace ProjectLibrary.Repositories.Implementations
{
public class OrderRepository : IOrderRepository
{
2024-11-12 23:13:20 +04:00
public void CreateOrder(Orders order)
{
2024-11-12 23:13:20 +04:00
}
public void DeleteOrder(int id)
{
2024-11-12 23:13:20 +04:00
}
public Orders ReadOrderById(int id)
{
return Orders.CreateEntity(0, DateTime.Now, DateTime.Now, 0, []);
2024-11-12 23:13:20 +04:00
}
public IEnumerable<Orders> ReadOrders()
{
return [] ;
2024-11-12 23:13:20 +04:00
}
public void UpdateOrder(Orders order)
{
2024-11-12 23:13:20 +04:00
}
}
}