public JsonResult SalvarVitima(VitimaEntity entity) { IList<string> erros = Validar(entity); if (erros.Any()) { return new JsonResult() { Data = new { Sucesso = false, Erros = erros } }; } else { EnderecoEntity endereco = new EnderecoEntity() { IdLogradouro = entity.Pessoa.Logradouro }; endereco.IdLogradouro.IdBairro = entity.Pessoa.Bairro; endereco.IdLogradouro.IdBairro.IdMunicipio = entity.Pessoa.Municipio; endereco.IdLogradouro.IdBairro.IdMunicipio.Uf = entity.Pessoa.UF; endereco.IdComplemento = new ComplementoEntity(); endereco.IdComplemento.Descricao = entity.Pessoa.Complemento; endereco.Numero = entity.Pessoa.Numero; var complementoRules = RulesManager.CreateByEntity<ComplementoEntity, int>(); var complemento = endereco.IdComplemento; complementoRules.Create(complemento); complementoRules.Flush(); endereco.IdComplemento = complemento; var enderecoRules = RulesManager.CreateByEntity<EnderecoEntity, int>(); enderecoRules.Create(endereco); enderecoRules.Flush(); entity.Pessoa.IdEndereco = endereco; var pessoaRules = RulesManager.CreateByEntity<PessoaEntity, int>(); pessoaRules.Create(entity.Pessoa); rules.Create(entity); return new JsonResult() { Data = new { Sucesso = true } }; } }
private IList<string> Validar(VitimaEntity entity) { IList<string> erros = new List<string>(); var dtrules = new DataRules(); if (entity.DataNasc.Year != 0001 && dtrules.VerificarMaiorIdade(entity.DataNasc)) if (string.IsNullOrEmpty(entity.Pessoa.Cpf)) erros.Add("O campo 'CPF' é obrigatório para maiores de 18 anos"); if (string.IsNullOrEmpty(entity.Pessoa.Nome)) erros.Add("O campo 'Nome' é obrigatório"); if (string.IsNullOrEmpty(entity.Pessoa.Sexo)) erros.Add("O campo 'Sexo' é obrigatório"); if (entity.DataNasc.Year == 0001) erros.Add("O campo 'Data Nasc.' é obrigatório"); if (entity.DataNasc.Date > DateTime.Today.Date) erros.Add("O campo 'Data Nasc.' não pode conter datas futuras"); if (string.IsNullOrEmpty(entity.Remocao)) erros.Add("O campo 'Remoção' é obrigatório"); if (entity.TipoFerimento == 0) erros.Add("O campo 'Tipo Ferimento' é obrigatório"); if (entity.Pessoa.UF != null && string.IsNullOrEmpty(entity.Pessoa.UF.Uf)) erros.Add("O campo 'UF' é obrigatório"); if (entity.Pessoa.Municipio != null && entity.Pessoa.Municipio.IdMunicipio == 0) erros.Add("O campo 'Município' é obrigatório"); if (entity.Pessoa.Bairro != null && entity.Pessoa.Bairro.IdBairro == 0) erros.Add("O campo 'Bairro' é obrigatório"); if (entity.Pessoa.Logradouro != null && entity.Pessoa.Logradouro.IdLogradouro == 0) erros.Add("O campo 'Logradouro' é obrigatório"); if (string.IsNullOrEmpty(entity.Pessoa.Numero)) erros.Add("O campo 'Número' é obrigatório"); return erros; }