コード例 #1
0
        // GET: api/Apuesta
        public IEnumerable <ApuestaDTO> Get()
        {
            var repo = new ApuestaRepository();
            List <ApuestaDTO> apuestas = repo.RetrieveDTO();

            return(apuestas);
        }
コード例 #2
0
        // GET: api/Apuesta
        public ApuestaDTO Get()
        {
            var repo = new ApuestaRepository();
            //Apuesta a = repo.Retrieve();
            ApuestaDTO a = repo.RetrieveDTO();

            return(a);
        }