Created
April 8, 2020 21:16
-
-
Save rafaeldalsenter/7b93ae6b8b80a34fd569c6c133207fcb to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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