-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPatient.cs
91 lines (76 loc) · 1.52 KB
/
Patient.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
using System;
namespace RehabLight
{
/// <summary>
/// Summary description for Patient.
/// </summary>
public class Patient
{
public Patient()
{
freecardDate = new System.DateTime(((long)(0)));
firstname = "";
surname = "";
personnumber = "";
street = "";
zipcode = "";
city = "";
homePhone = "";
workPhone = "";
mobilePhone = "";
info = "";
}
private string firstname, surname, personnumber, street, zipcode, city, homePhone, workPhone,
mobilePhone, info;
private int id;
private System.DateTime freecardDate;
public System.DateTime FreecardDate
{
get {return freecardDate;} set {freecardDate = value;}
}
public string Firstname
{
get {return firstname;} set{firstname = value;}
}
public string Surname
{
get {return surname;} set {surname = value;}
}
public string Street
{
get{return street;} set{street = value;}
}
public string Zipcode
{
get{return zipcode;} set{zipcode = value;}
}
public string City
{
get{return city;} set {city = value;}
}
public string WorkPhone
{
get{return workPhone;} set{workPhone = value;}
}
public string HomePhone
{
get{return homePhone;} set{homePhone = value;}
}
public string MobilePhone
{
get{return mobilePhone;} set{mobilePhone = value;}
}
public string Info
{
get{return info;} set{info = value;}
}
public string Personnumber
{
get{return personnumber;} set{personnumber = value;}
}
public int Id
{
get {return id;} set {id = value;}
}
}
}