static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); PosForm posf = new PosForm(); PosSystem poss = new PosSystem(posf); posf.setPosSystem(poss); Application.Run(posf); }
public PosCBHandler(PosForm posf) { this.posf = posf; }
public PosSystem(PosForm posf) { this.posf = posf; }