Example #1
0
        // GET: SorteioParticipantes/Create
        public IEnumerable <SorteioParticipanteViewModel> GetAll(int id)
        {
            var response      = _sorteioParticipanteAppService.GetAll(id);
            var participantes =
                JsonConvert.DeserializeObject <IEnumerable <SorteioParticipanteViewModel> >(response.Content.ReadAsStringAsync().Result);

            return(participantes);
        }