public async Task <List <RepresentantesDTO> > ListarRepresentantes(Representantes representanteParaListar)
        {
            using (SportsGoEntities context = new SportsGoEntities(false))
            {
                RepresentantesRepository representanteRepo = new RepresentantesRepository(context);
                List <RepresentantesDTO> listarInformacionRepresentante = await representanteRepo.ListarRepresentantes(representanteParaListar);

                return(listarInformacionRepresentante);
            }
        }