Exemplo n.º 1
0
 public FrmInputNumeral(ENumeralType type, decimal qty)
     : this(type)
 {
     this._decimalQty = qty;
 }
Exemplo n.º 2
0
 public FrmInputNumeral(ENumeralType type, int qty)
     : this(type)
 {
     this._intQty = qty;
 }
Exemplo n.º 3
0
 public FrmInputNumeral(ENumeralType type)
 {
     InitializeComponent();
     this._type = type;
 }