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