Esempio n. 1
0
        public string Get([FromQuery] RequestClientComment req)//[FromUri]
        {
            //MobileAppSettingsDictionary settings = this.Configuration.GetMobileAppSettingsProvider().GetMobileAppSettings();
            //ITraceWriter traceWriter = this.Configuration.Services.GetTraceWriter();
            string json     = "";
            string step_err = "";

            try
            {
                if (req.id_shop != null)
                {
                    step_err += "enter if = ";
                    ResponseCommentClient resp = new ResponseCommentClient();
                    resp.GetCommentShop(Constants.connectDB, req.id_shop);
                    step_err += "get comment = ";
                    json      = JsonConvert.SerializeObject(resp);
                    step_err += "convert json = ";
                }
            }
            catch (Exception ex)
            {
                json = step_err + ex.Message;
            }



            return(json);
        }
Esempio n. 2
0
        // POST api/<controller>
        public string Post([FromBody] RequestClientComment req)
        {
            //ITraceWriter traceWriter = this.Configuration.Services.GetTraceWriter();
            ResponseCommentClient resp = new ResponseCommentClient();

            string json = "";

            try
            {
                json = resp.SetCommentShop(Constants.connectDB, req);
            }
            catch (Exception ex)
            {
                json += ex.Message;
            }

            return("Спасибо за отзыв!");
        }