Skip to content

Instantly share code, notes, and snippets.

@rafaeldalsenter
Created April 8, 2020 21:16
Show Gist options
  • Select an option

  • Save rafaeldalsenter/7b93ae6b8b80a34fd569c6c133207fcb to your computer and use it in GitHub Desktop.

Select an option

Save rafaeldalsenter/7b93ae6b8b80a34fd569c6c133207fcb to your computer and use it in GitHub Desktop.
public class CreateClienteCommand : IRequest<CommandReturnDto>
{
public string Nome { get; private set; }
public string Cpf { get; private set; }
public string Rua { get; private set; }
public string Bairro { get; private set; }
public string Cidade { get; private set; }
public string Observacoes { get; private set; }
public CreateClienteCommand(string nome, string cpf, string rua, string bairro, string cidade, string obs)
{
Nome = nome;
Cpf = cpf;
Rua = rua;
Bairro = bairro;
Cidade = cidade;
Observacoes = obs;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment