20 lines
784 B
C#
20 lines
784 B
C#
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);
|
|
void ShowModifiers(Guid productGroupID);
|
|
}
|
|
}
|