51d518d2a0
The functions now only do one thing.
18 lines
356 B
C#
18 lines
356 B
C#
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);
|
|
}
|
|
}
|