38 lines
749 B
C#
38 lines
749 B
C#
|
using ProjectLibrary.Entites;
|
|||
|
using ProjectLibrary.Entities;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
|
|||
|
namespace ProjectLibrary.Repositories
|
|||
|
{
|
|||
|
public class BookOrderRepository : IBookOrderRepository
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
public Book_Orders GetBookOrderByOrderId(int orderId)
|
|||
|
{
|
|||
|
return Book_Orders.CreateEntity(orderId,0);
|
|||
|
}
|
|||
|
|
|||
|
public void AddBookOrder(Book_Orders bookOrder)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public void UpdateBookOrder(Book_Orders bookOrder)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public void DeleteBookOrder(int bookId, int orderId)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public List<Book_Orders> ReadBookOrders()
|
|||
|
{
|
|||
|
return [];
|
|||
|
}
|
|||
|
}
|
|||
|
}
|