예제 #1
0
 public PacienteAgendarConsultaViewModel(string idPaciente, string nomePaciente, DateTime dataNascimento, string cpf, EnderecoViewModel endereco)
 {
     this.IdPaciente     = idPaciente;
     this.NomePaciente   = nomePaciente;
     this.DataNascimento = dataNascimento;
     this.Cpf            = cpf;
     this.Endereco       = endereco;
 }
예제 #2
0
 public AtendenteCadastroViewModel(string nome, DateTime dataNascimento, string sexo, string cpf, string rg, string email, string telefone, EnderecoViewModel endereco, UsuarioCadastroViewModel usuario)
 {
     this.Nome           = nome;
     this.DataNascimento = dataNascimento;
     this.Sexo           = sexo;
     this.Cpf            = cpf;
     this.Rg             = rg;
     this.Email          = email;
     this.Telefone       = telefone;
     this.Endereco       = endereco;
     this.Usuario        = usuario;
 }