예제 #1
0
        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);
        }