1
0
mirror of https://github.com/SirLecram/HospitalServerManager synced 2024-09-27 03:40:35 +02:00
admissionManager/ViewModel/PatientViewModel.cs

24 lines
612 B
C#
Raw Normal View History

2018-11-18 18:49:40 +01:00
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)
{
}
}
}