예제 #1
0
        public DataTable GetNdmbDataById(string ID)
        {
            DataTable            result  = new DataTable();
            IYdmbService         service = this.CreateSubClient();
            ICommunicationObject comm    = service as ICommunicationObject;

            comm.Using(client =>
            {
                result = service.GetNdmbDataById(ID);
            });
            return(result);
        }