22 lines
500 B
C#
22 lines
500 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProjectCompRepair.Entities;
|
|
|
|
public class AccessoiresOrder
|
|
{
|
|
public int Id { get; private set; }
|
|
|
|
public int OrderId { get; private set; }
|
|
|
|
public int Count { get; private set; }
|
|
|
|
public static AccessoiresOrder CreateElement(int id, int orderId, int count)
|
|
{
|
|
return new AccessoiresOrder { Id = id, OrderId = orderId, Count = count};
|
|
}
|
|
}
|