public FrmInputNumeral(ENumeralType type, decimal qty) : this(type) { this._decimalQty = qty; }
public FrmInputNumeral(ENumeralType type, int qty) : this(type) { this._intQty = qty; }
public FrmInputNumeral(ENumeralType type) { InitializeComponent(); this._type = type; }