2011-01-10 19:49:11 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using Tanshu.Accounts.Contracts;
|
2011-01-30 07:14:05 +00:00
|
|
|
|
using System.Windows.Forms;
|
2011-12-05 09:41:02 +00:00
|
|
|
|
using Tanshu.Accounts.Entities;
|
2011-01-30 07:14:05 +00:00
|
|
|
|
using Tanshu.Common;
|
2011-01-10 19:49:11 +00:00
|
|
|
|
|
|
|
|
|
namespace Tanshu.Accounts.PointOfSale
|
|
|
|
|
{
|
|
|
|
|
public interface ISaleForm
|
|
|
|
|
{
|
|
|
|
|
void CloseWindow();
|
|
|
|
|
void SetUserName(string name);
|
|
|
|
|
}
|
|
|
|
|
}
|