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

20 lines
784 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 discountAmount, decimal grossAmount, decimal serviceChargeAmount, decimal taxAmount, decimal valueAmount, 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);
2011-01-22 12:38:30 +00:00
void ShowModifiers(Guid productGroupID);
}
}