public frmOrderFormConfirm(string message, string caption, frmOrderFormConfirm.OpenStyle openStyle)
 {
     this.InitializeComponent();
     this.Text = caption;
     this.openFormStyle = openStyle;
     this._message = message;
 }
 public frmOrderFormConfirm(string message, frmOrderFormConfirm.OpenStyle openStyle, string pinCode)
 {
     this.InitializeComponent();
     this.openFormStyle = openStyle;
     ApplicationInfo.UserPincodeLastEntry = pinCode;
     this._message = message;
 }