24 lines
519 B
C#
24 lines
519 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProjectLibrary.Entites
|
|
{
|
|
public class Book_Orders
|
|
{
|
|
public int BookID { get; private set; }
|
|
public int OrderID { get; private set; }
|
|
|
|
public static Book_Orders CreateEntity(int orderID,int bookID )
|
|
{
|
|
return new Book_Orders
|
|
{
|
|
BookID = bookID,
|
|
OrderID = orderID
|
|
};
|
|
}
|
|
}
|
|
}
|