Beispiel #1
0
 public Service(string code, ServiceCategory category, string name)
     : base(code)
 {
     _category = category;
     _name = name;
     _servicePrices = new List<ServicePricing>();
 }
Beispiel #2
0
 public Service(string code, ServiceCategory category, string name, string description)
     : base(code)
 {
     _category = category;
     _name = name;
     _description = description;
     _servicePrices = new List<ServicePricing>();
 }