Esempio n. 1
0
        public HttpResponseMessage IncrementCityLocationList(string token, string cl)
        {
            HttpContext.Current.Response.Cache.VaryByHeaders["accept-enconding"] = true;
            var json = citysercice.GetIncrementCityLocationList(cl, token).ToList();

            response = toJson(json);
            request  = HttpContext.Current.Request;
            logservices.logservices(request, response, "dbo", "json", "path", string.Empty, token, "increment", "city", cl);

            return(response);
        }