Ejemplo n.º 1
0
        public HttpResponseMessage Get()
        {
            TableStorageProvider tableStorageProvider = new TableStorageProvider();
            var charData = tableStorageProvider.GetChartData();
            var response = Request.CreateResponse(HttpStatusCode.OK, charData);

            return(response);
        }