public int create(CargoDTO cargoDTO) { int retorno = 0; CargoDAO cargoDAO = new CargoDAO(); retorno = cargoDAO.create(cargoDTO); return(retorno); }