private bool GetDataFromGUSCanExecute() { if (string.IsNullOrWhiteSpace(VMEntity.NIP)) { return(false); } try { return(kontrahentNipValidationHelper.CzyNipPoprawnyDoPobraniaDanychZGus(VMEntity.NIP)); } catch (Exception ex) { DialogService.ShowError_BtnOK(ex.Message); return(false); } }
private bool PobierzDaneZGUSCommandCanExecute() { if (string.IsNullOrWhiteSpace(Kontrahent.NIP)) { return(false); } try { return(kontrahentNipValidationHelper.CzyNipPoprawnyDoPobraniaDanychZGus(Kontrahent.NIP)); } catch (Exception ex) { dialogService.ShowError_BtnOK(ex.Message); return(false); } }
public void CzyNipPoprawnyDoPobraniaDanychZGus_GdyNipNull_False() { var actual = sut.CzyNipPoprawnyDoPobraniaDanychZGus(null); Assert.IsFalse(actual); }