Example #1
0
 public Receipt(string title, DateTime date, Client client, Organization organization, int servicePrice, int id) : base(title, date, client, organization, id)
 {
     this.servicePrice = servicePrice;
 }
Example #2
0
 public Check(string title, DateTime date, Client client, Organization organization, int totalPrice, int id) : base(title, date, client, organization, id)
 {
     this.totalPrice = totalPrice;
 }