public Receipt(string restaurantName, string restaurantAddress, Tab tab)
 {
     this._restaurantName    = restaurantName;
     this._restaurantAddress = restaurantAddress;
     this._tab = tab;
 }
Exemple #2
0
 public Receipt GetReceipt(Tab tab)
 {
     return(new Receipt(this._name, this._address, tab));
 }