Пример #1
0
        public BizFlowInfo GetBizFlow(string flowId)
        {
            Assert.IsStringNotNullOrEmpty(flowId);

            BizFlowInfo result = null;
            var         chanel = CreateChannel();

            chanel.Call(p =>
            {
                result = p.GetBizFlow(flowId);
            });

            return(result);
        }
Пример #2
0
        public BizFlowInfo GetBizFlow(string clientId, string flowCodeOrTargetType)
        {
            Assert.IsStringNotNullOrEmpty(clientId);
            Assert.IsStringNotNullOrEmpty(flowCodeOrTargetType);

            BizFlowInfo result = null;
            var         chanel = CreateChannel();

            chanel.Call(p =>
            {
                result = p.GetBizFlow(clientId, flowCodeOrTargetType);
            });

            return(result);
        }