Fix the build.
[castle.git] / Experiments / Castle.Igloo / Igloo.Clinic.Domain / Patient.cs
blob81ae4369a2b28655e226cb9d7aff577a3e9ec8d5
2 namespace Igloo.Clinic.Domain
4 public class Patient
6 private string _name = string.Empty;
7 private string _address = string.Empty;
9 public string Address
11 get { return _address; }
12 set { _address = value; }
14 public string Name
16 get { return _name; }
17 set { _name = value; }