2024-12-03 13:25:56 +04:00
|
|
|
|
namespace Publication.Entites;
|
|
|
|
|
|
|
|
|
|
public class PrintingHouseOrders
|
|
|
|
|
{
|
2024-12-16 20:18:06 +04:00
|
|
|
|
public int PrintingHouseId { get; set; }
|
2024-12-03 13:25:56 +04:00
|
|
|
|
public int OrderId { get; set; }
|
|
|
|
|
public int Count { get; set; }
|
2024-12-20 13:55:03 +04:00
|
|
|
|
|
|
|
|
|
public string OrderInfo { get; set; }
|
2024-12-03 13:25:56 +04:00
|
|
|
|
public static PrintingHouseOrders CreateEntity(int id, int orderId, int count)
|
|
|
|
|
{
|
2024-12-20 10:25:40 +04:00
|
|
|
|
return new PrintingHouseOrders { PrintingHouseId = id, OrderId = orderId, Count = count, OrderDescription = dsc };
|
2024-12-03 13:25:56 +04:00
|
|
|
|
}
|
|
|
|
|
}
|