Last active
August 17, 2017 17:21
-
-
Save tomwis/7f5343574af0a1d4ecb3dce798f150d2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public Command SaveCmd => new Command(async () => | |
{ | |
if (/* Ten miesiąc już istnieje? */) | |
{ | |
await CoreMethods.DisplayAlert("", AppResources.MothAlreadyExistsMessage, AppResources.Ok); // Powiedzmy użytkownikowi, że ten miesiąc dodał już wczesniej | |
} | |
else | |
{ | |
// Zapisz miesiąc | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment