public async Task <WrapperSimpleTypesDTO> ModificarInformacionRepresentante(Representantes representanteParaModificar)
        {
            using (SportsGoEntities context = new SportsGoEntities(false))
            {
                RepresentantesRepository representanteRepo      = new RepresentantesRepository(context);
                Representantes           representanteExistente = await representanteRepo.ModificarInformacionRepresentante(representanteParaModificar);

                WrapperSimpleTypesDTO wrapperModificarInformacionRepresentante = new WrapperSimpleTypesDTO();

                wrapperModificarInformacionRepresentante.NumeroRegistrosAfectados = await context.SaveChangesAsync();

                if (wrapperModificarInformacionRepresentante.NumeroRegistrosAfectados > 0)
                {
                    wrapperModificarInformacionRepresentante.Exitoso = true;
                }

                return(wrapperModificarInformacionRepresentante);
            }
        }