2024-05-02 11:58:38 +04:00
|
|
|
|
namespace BeautySalonDBModels.Models
|
|
|
|
|
{
|
|
|
|
|
public class Service
|
|
|
|
|
{
|
2024-05-02 12:54:17 +04:00
|
|
|
|
public int ServiceId { get; set; }
|
|
|
|
|
public string ServiceName { get; set; } = string.Empty;
|
|
|
|
|
public double Price { get; set; }
|
|
|
|
|
public int SpecialisationId { get; set; }
|
2024-05-08 12:35:29 +04:00
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
return ServiceName;
|
|
|
|
|
}
|
2024-05-02 11:58:38 +04:00
|
|
|
|
}
|
|
|
|
|
}
|