public void validarDados() { if (string.IsNullOrEmpty(aEnvioDTO.NomePaciente)) { aCoViking.addErro("Necessário incluir o nome do Paciente"); } if (string.IsNullOrEmpty(aEnvioDTO.Telefone)) { aCoViking.addErro("Necessário incluir o número do telefone"); } if (string.IsNullOrEmpty(aEnvioDTO.Texto)) { aCoViking.addErro("Necessário incluir a dúvida"); } if (string.IsNullOrEmpty(aEnvioDTO.Email)) { aCoViking.addErro("Necessário incluir o email"); } }
public void execute() { if (aServicoID != 0) { getServico(); getSubservicos(); montarDTO(); } else { aCoViking.addErro("Selecione um serviço"); } }
private void validarDados() { if (aPrajaDTO == null) { aCoViking.addErro("PrajaDTO nulo"); } else { if (string.IsNullOrEmpty(aPrajaDTO.NOME)) { aCoViking.addErro(""); } if (string.IsNullOrEmpty(aPrajaDTO.ENDERECO)) { aCoViking.addErro("Por favor informar o endereço!"); } if (string.IsNullOrEmpty(aPrajaDTO.EMAIL)) { aCoViking.addErro("Necessário informar um email!"); } if (string.IsNullOrEmpty(aPrajaDTO.TELEFONE)) { aCoViking.addErro("Por favor informar o telefone!"); } if (string.IsNullOrEmpty(aPrajaDTO.PERGUNTA)) { aCoViking.addErro("Por favor informar por que quer mudar seu estilo de vida!"); } if (string.IsNullOrEmpty(aPrajaDTO.IMAGEM)) { aCoViking.addErro("Por favor incluir uma imagem de corpo inteiro!"); } } }