Skip to content

Instantly share code, notes, and snippets.

@rafaeldalsenter
Created April 3, 2020 01:19
Show Gist options
  • Select an option

  • Save rafaeldalsenter/521b9efc040f7720cf6f542d8f0f0d69 to your computer and use it in GitHub Desktop.

Select an option

Save rafaeldalsenter/521b9efc040f7720cf6f542d8f0f0d69 to your computer and use it in GitHub Desktop.
public string Title { get; private set; }
...
public void AddTitle(string title)
{
if (title.IsNullOrWhiteSpace())
{
AddError("Faltou preencher o valor 'title'");
return;
}
Title = title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment