using System; using System.Collections.Generic; using System.Linq; using System.Text; using Tanshu.Accounts.Contracts; namespace Tanshu.Accounts.PointOfSale { public interface ISaleForm { void ClearBill(Dictionary bill); void SetCustomerDisplay(string name); void CloseWindow(); void ShowAmount(decimal grossTax, decimal discount, decimal grossAmount, decimal amount, List bill); void ShowInfo(string billID, string kotID, DateTime creationDate, DateTime date, DateTime lastEditDate, string customer, string tableID, Guid waiterID, string waiter); void SetUserName(string name); } }