20 lines
458 B
C#
Raw Permalink Normal View History

2024-12-23 03:32:54 +04:00
namespace IT_Company.Entities
{
public class Service
{
public int Id { get; set; }
public int Price { get; set; }
public string Description { get; set; }
public static Service CreateEntity(int id, int price, string description)
{
return new Service
{
Id = id,
Price = price,
Description = description
};
}
}
}