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; }
|
|
|
|
|
public static PrintingHouseOrders CreateEntity(int id, int orderId, int count)
|
|
|
|
|
{
|
2024-12-16 20:18:06 +04:00
|
|
|
|
return new PrintingHouseOrders { PrintingHouseId = id, OrderId = orderId, Count = count };
|
2024-12-03 13:25:56 +04:00
|
|
|
|
}
|
|
|
|
|
}
|