Exemple #1
0
        public async Task <AnunciosContenidos> BuscarAnuncioContenidoPorConsecutivo(AnunciosContenidos anuncioContenidoParaBuscar)
        {
            using (SportsGoEntities context = new SportsGoEntities(false))
            {
                AnunciantesRepository anuncianteRepo          = new AnunciantesRepository(context);
                AnunciosContenidos    anuncioContenidoBuscado = await anuncianteRepo.BuscarAnuncioContenidoPorConsecutivo(anuncioContenidoParaBuscar);

                return(anuncioContenidoBuscado);
            }
        }