narsil/Tanshu.Accounts.PointOfSale/Controllers/ISaleForm.cs

19 lines
694 B
C#
Raw Normal View History

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<BillItemKey, SalesBillItemBO> bill);
void SetCustomerDisplay(string name);
void CloseWindow();
void ShowAmount(decimal grossTax, decimal discount, decimal grossAmount, decimal amount, List<SalesBillItemBO> 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);
}
}