32 lines
625 B
C#
32 lines
625 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Tanshu.Accounts.PointOfSale
|
|
{
|
|
public class DisplayController
|
|
{
|
|
ISaleForm saleForm;
|
|
public void InitGui(ISaleForm saleForm)
|
|
{
|
|
this.saleForm = saleForm;
|
|
}
|
|
private void InitComponents()
|
|
{
|
|
InitModel();
|
|
InitView();
|
|
}
|
|
|
|
private void InitView()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
private void InitModel()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|