narsil/Tanshu.Accounts.PointOfSale/Controllers/ISaleForm.cs

18 lines
356 B
C#
Raw Normal View History

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);
}
}