Пример #1
0
 public FrmInputNumeral(ENumeralType type, decimal qty)
     : this(type)
 {
     this._decimalQty = qty;
 }
Пример #2
0
 public FrmInputNumeral(ENumeralType type, int qty)
     : this(type)
 {
     this._intQty = qty;
 }
Пример #3
0
 public FrmInputNumeral(ENumeralType type)
 {
     InitializeComponent();
     this._type = type;
 }