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); }