using System; using System.Collections.Generic; using System.Linq; using System.Text; using Tanshu.Accounts.Contracts; using System.Windows.Forms; using Tanshu.Accounts.Entities; using Tanshu.Common; namespace Tanshu.Accounts.PointOfSale { public interface ISaleForm { void CloseWindow(); void SetUserName(string name); } }