Exemplo n.º 1
0
        public BasicResponse <JC_ExpressionConfigInfo> GetJC_ExpressionconfigById(ExpressionConfigGetRequest jC_Expressionconfigrequest)
        {
            var result = _Repository.GetJC_ExpressionconfigById(jC_Expressionconfigrequest.Id);
            var jC_ExpressionconfigInfo     = ObjectConverter.Copy <JC_ExpressionconfigModel, JC_ExpressionConfigInfo>(result);
            var jC_Expressionconfigresponse = new BasicResponse <JC_ExpressionConfigInfo>();

            jC_Expressionconfigresponse.Data = jC_ExpressionconfigInfo;
            return(jC_Expressionconfigresponse);
        }
 public BasicResponse <JC_ExpressionConfigInfo> GetJC_ExpressionconfigById(ExpressionConfigGetRequest jC_Expressionconfigrequest)
 {
     return(_expressionConfigService.GetJC_ExpressionconfigById(jC_Expressionconfigrequest));
 }