// GET: api/CodigoEventoes public IEnumerable <CodigoEvento> GetCodigoEvento() { return(_codigoService.GetAll()); }
public async Task <JsonResult> Get() { return(Json(Mapper.Map <List <CodigoDTO> >(await CodigoService.GetAll()), JsonRequestBehavior.AllowGet)); }