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