public async Task <Representantes> BuscarRepresentantePorCodigoPersona(Representantes representanteParaBuscar)
        {
            using (SportsGoEntities context = new SportsGoEntities(false))
            {
                RepresentantesRepository representanteRepo        = new RepresentantesRepository(context);
                Representantes           informacionRepresentante = await representanteRepo.BuscarRepresentantePorCodigoPersona(representanteParaBuscar);

                return(informacionRepresentante);
            }
        }