public Abastecimento() { Posto = new Posto(); UsuarioInc = new Usuario(); TipoVeiculo = new TipoVeiculo(); TipoCombustivel = new TipoCombustivel(); Veiculo = new Veiculo(); }
public Veiculo() { Marca = new Marca(); Modelo = new Modelo(); TipoVeiculo = new TipoVeiculo(); TipoCombustivel = new TipoCombustivel(); UsuarioResp = new Usuario(); }
private void validarCTipoCombustivel(string cTipoCombustivel) { if (string.IsNullOrEmpty(cTipoCombustivel)) { ListaErros.Add("O Tipo de combustivel não pode ser vazio."); } else { TipoCombustivel.setNCodCombustivel(int.Parse(cTipoCombustivel)); } }
private void validarTipoCombustivel(string tipoCombustivel) { int auxtipoCombustivel; if (int.TryParse(tipoCombustivel, out auxtipoCombustivel)) { TipoCombustivel.setNCodCombustivel(auxtipoCombustivel); } else { ListaErros.Add("O tipo de combustível está incorreto"); } }
public void setTipoCombustivel(TipoCombustivel tipoCombustivel) { TipoCombustivel = tipoCombustivel; }