public BasicResponse <JC_AnalysisTemplateConfigInfo> UpdateJC_Analysistemplateconfig(AnalysisTemplateConfigUpdateRequest jC_Analysistemplateconfigrequest)
        {
            var responseStr = HttpClientHelper.Post(Webapi + "/v1/AnalysisTemplateConfig/UpdateJC_Analysistemplateconfig?token=" + Token, JSONHelper.ToJSONString(jC_Analysistemplateconfigrequest));

            return(JSONHelper.ParseJSONString <BasicResponse <JC_AnalysisTemplateConfigInfo> >(responseStr));
        }
Example #2
0
        public BasicResponse <JC_AnalysisTemplateConfigInfo> UpdateJC_Analysistemplateconfig(AnalysisTemplateConfigUpdateRequest jC_Analysistemplateconfigrequest)
        {
            var _jC_Analysistemplateconfig = ObjectConverter.Copy <JC_AnalysisTemplateConfigInfo, JC_AnalysistemplateconfigModel>(jC_Analysistemplateconfigrequest.JC_AnalysisTemplateConfigInfo);

            _Repository.UpdateJC_Analysistemplateconfig(_jC_Analysistemplateconfig);
            var jC_Analysistemplateconfigresponse = new BasicResponse <JC_AnalysisTemplateConfigInfo>();

            jC_Analysistemplateconfigresponse.Data = ObjectConverter.Copy <JC_AnalysistemplateconfigModel, JC_AnalysisTemplateConfigInfo>(_jC_Analysistemplateconfig);
            return(jC_Analysistemplateconfigresponse);
        }
Example #3
0
 public BasicResponse <JC_AnalysisTemplateConfigInfo> UpdateJC_Analysistemplateconfig(AnalysisTemplateConfigUpdateRequest jC_Analysistemplateconfigrequest)
 {
     return(_AnalysisTemplateConfigService.UpdateJC_Analysistemplateconfig(jC_Analysistemplateconfigrequest));
 }