public virtual void ViewModel_NotifyViewModelParentHandler(object sender, NotifyEventArgs args) { }
protected void ShowSuccessMsg(NotifyEventArgs args) { ShowSuccessMsg(args.Content.Keys.First().ToString(), args.Content.Values.First().ToString()); }
protected void ShowSuccessMsgWithSound(NotifyEventArgs args, BHTController bhtController) { bhtController.SoundOK(); ShowSuccessMsg(args); }
protected void ShowErrorMsgWithSound(NotifyEventArgs args, BHTController bhtController) { bhtController.SoundWarning(); ShowErrorMsg(args); }
protected bool ShowConfirmationMsg(NotifyEventArgs args) { var getResult = ShowConfirmationMsg(args.Content.Keys.First().ToString(), args.Content.Values.First().ToString()); return(getResult); }
protected bool ShowConfirmationMsgWithSound(NotifyEventArgs args, BHTController bhtController) { bhtController.SoundConfirm(); return(ShowConfirmationMsg(args)); }