public List <Cargo> All()
        {
            var cargos = cargoRepository.GetAllCargos().Result.ToList();

            return(cargos);
        }