CourseWork_Borschevskaya_A..../Hospital/HospitalContracts/ViewModels/PatientViewModel.cs

26 lines
638 B
C#
Raw Normal View History

2023-04-05 11:46:14 +04:00
using HospitalDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalContracts.ViewModels
{
public class PatientViewModel : IPatientModel
{
public int Id { get; set; }
public string Surname { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public string Patronymic { get; set; } = string.Empty;
public DateTime BirthDate { get; set; }
public int TreatmentId { get; set; }
public string TreatmentName { get; set; } = string.Empty;
}
}