PIbd-21 Chechevitsyn S.A LabWork_2 #2

Closed
shaman_stepan wants to merge 10 commits from LabWork2 into Labwork1
Showing only changes of commit 5f29de3a51 - Show all commits

View File

@ -2,11 +2,11 @@
public class PrintingHouseOrders
{
public int Id { get; set; }
public int PrintingHouseId { 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 };
return new PrintingHouseOrders { PrintingHouseId = id, OrderId = orderId, Count = count };
}
}