16 lines
456 B
C#
Raw Normal View History

2024-05-08 14:52:50 +04:00
using System.ComponentModel;
namespace MedicalDatabaseContracts.ViewModels
{
public class DoctorViewModel : AbstractPersonViewModel
{
public int SpecializationId { get; set; }
[DisplayName("Специальность")]
public string SpecializationName { get; set; } = string.Empty;
public override string ToString()
{
return GetFIO() + ", " + SpecializationName.ToLower();
}
2024-05-08 14:52:50 +04:00
}
}