2 namespace Igloo
.Clinic
.Domain
7 private string _description
;
8 private long _id
= int.MinValue
;
16 public string Description
18 get { return _description; }
19 set { _description = value; }
25 set { _name = value; }
28 public Drug(long id
, string name
, string description
)
32 _description
= description
;