1
0
mirror of https://github.com/SirLecram/HospitalServerManager synced 2024-08-16 01:52:26 +02:00
admissionManager/ViewModel/PatientViewModel.cs
2018-11-18 18:49:40 +01:00

24 lines
612 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalServerManager.ViewModel
{
class PatientViewModel
{
public string PrimaryKey { get; private set; }
public string Name { get; private set; }
public string Surname { get; private set; }
public DateTime BirthDate { get; private set; }
public string PatientState { get; private set; }
public string PatientSex { get; private set; }
public PatientViewModel(Model.Basic.Patient patient)
{
}
}
}