private void Save()
 {
     _modalsService.YesNoConfirm(this, (val) =>
     {
         _customerService.Save(_current);
         _original = _current.Clone();
     }, "Confirm", "Zeker dat u wilt opslaan?");
 }
Beispiel #2
0
 private void OpenQuestionModal()
 {
     _modalService.YesNoConfirm(this, null, "Question", "Do you want to answer this question?");
 }