13 lines
357 B
C#
13 lines
357 B
C#
namespace Publication.Entites;
|
|
|
|
public class PrintingHouseOrders
|
|
{
|
|
public int Id { get; set; }
|
|
public int OrderId { get; set; }
|
|
public int Count { get; set; }
|
|
public static PrintingHouseOrders CreateEntity(int id, int orderId, int count)
|
|
{
|
|
return new PrintingHouseOrders { Id = id, OrderId = orderId, Count = count };
|
|
}
|
|
}
|