2011-01-11 01:19:11 +05:30
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using Tanshu.Accounts.Contracts;
|
2011-01-30 12:44:05 +05:30
|
|
|
|
using System.Windows.Forms;
|
2011-12-05 15:11:02 +05:30
|
|
|
|
using Tanshu.Accounts.Entities;
|
2011-01-30 12:44:05 +05:30
|
|
|
|
using Tanshu.Common;
|
2011-01-11 01:19:11 +05:30
|
|
|
|
|
|
|
|
|
namespace Tanshu.Accounts.PointOfSale
|
|
|
|
|
{
|
|
|
|
|
public interface ISaleForm
|
|
|
|
|
{
|
2011-08-23 12:40:05 +05:30
|
|
|
|
void ClearBill(List<BillItemValue> bill);
|
2011-01-11 01:19:11 +05:30
|
|
|
|
void SetCustomerDisplay(string name);
|
2011-12-05 15:11:02 +05:30
|
|
|
|
void SetWaiterDisplay(string p);
|
2011-01-11 01:19:11 +05:30
|
|
|
|
void CloseWindow();
|
2011-06-23 18:17:48 +05:30
|
|
|
|
void ShowAmount(decimal discountAmount, decimal grossAmount, decimal serviceChargeAmount, decimal taxAmount, decimal valueAmount, List<BillItemValue> bill);
|
2011-12-05 15:11:02 +05:30
|
|
|
|
void ShowInfo(Voucher voucher);
|
2011-01-11 01:19:11 +05:30
|
|
|
|
void SetUserName(string name);
|
2011-01-30 12:44:05 +05:30
|
|
|
|
BindingSource BindingSource { get; }
|
2011-08-23 12:40:05 +05:30
|
|
|
|
SaleFormState FormState { set; }
|
2011-01-11 01:19:11 +05:30
|
|
|
|
}
|
|
|
|
|
}
|