コード例 #1
0
ファイル: YdmbCaller.cs プロジェクト: zhang371615527/ces
        public DataTable GetNdmbDataByCond(string where)
        {
            DataTable            result  = new DataTable();
            IYdmbService         service = this.CreateSubClient();
            ICommunicationObject comm    = service as ICommunicationObject;

            comm.Using(client =>
            {
                result = service.GetNdmbDataByCond(where);
            });
            return(result);
        }