Fix the build.
[castle.git] / Experiments / Castle.Igloo / Igloo.Clinic.Domain / Doctor.cs
blob4be171397ee2ce7cb20f13f1cfa819edf292686a
2 namespace Igloo.Clinic.Domain
4 public class Doctor
6 private string _name = string.Empty;
7 private string _login= string.Empty;
8 private string _password = string.Empty;
10 public string Password
12 get { return _password; }
13 set { _password = value; }
15 public string Login
17 get { return _login; }
18 set { _login = value; }
20 public string Name
22 get { return _name; }
23 set { _name = value; }