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