repo.or.cz
/
castle.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix the build.
[castle.git]
/
Experiments
/
Castle.Igloo
/
Igloo.Clinic.Domain
/
Patient.cs
blob
81ae4369a2b28655e226cb9d7aff577a3e9ec8d5
1
2
namespace
Igloo
.
Clinic
.
Domain
3
{
4
public class
Patient
5
{
6
private string
_name
=
string
.
Empty
;
7
private string
_address
=
string
.
Empty
;
8
9
public string
Address
10
{
11
get
{ return _address; }
12
set
{ _address = value; }
13
}
14
public string
Name
15
{
16
get
{ return _name; }
17
set
{ _name = value; }
18
}
19
}
20
}