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

            return(JSONHelper.ParseJSONString <BasicResponse <JC_AnalysisTemplateConfigInfo> >(responseStr));
        }
示例#2
0
        public BasicResponse <JC_AnalysisTemplateConfigInfo> GetJC_AnalysistemplateconfigById(AnalysisTemplateConfigGetRequest jC_Analysistemplateconfigrequest)
        {
            var result = _Repository.GetJC_AnalysistemplateconfigById(jC_Analysistemplateconfigrequest.Id);
            var jC_AnalysistemplateconfigInfo     = ObjectConverter.Copy <JC_AnalysistemplateconfigModel, JC_AnalysisTemplateConfigInfo>(result);
            var jC_Analysistemplateconfigresponse = new BasicResponse <JC_AnalysisTemplateConfigInfo>();

            jC_Analysistemplateconfigresponse.Data = jC_AnalysistemplateconfigInfo;
            return(jC_Analysistemplateconfigresponse);
        }
示例#3
0
 public BasicResponse <JC_AnalysisTemplateConfigInfo> GetJC_AnalysistemplateconfigById(AnalysisTemplateConfigGetRequest jC_Analysistemplateconfigrequest)
 {
     return(_AnalysisTemplateConfigService.GetJC_AnalysistemplateconfigById(jC_Analysistemplateconfigrequest));
 }