public void GetAllBy(HPS.BLL.CarSystemBLL.BLLCarSystem_T.CarSystem_TField fieldName, Object value, ref System.Data.DataTable dataTable) { try{ _dataObject.SelectByField(fieldName.ToString(), value, ref dataTable); }catch (System.Exception ex) { throw Hepsa.Core.Exception.HandleException.ChangeExceptionLanguage(ex, this); } }
public List <HPS.BLL.CarSystemBLL.BLLCarSystem_T> GetAllBy(HPS.BLL.CarSystemBLL.BLLCarSystem_T.CarSystem_TField fieldName, Object value) { try{ return(_dataObject.SelectByField(fieldName.ToString(), value)); }catch (System.Exception ex) { throw Hepsa.Core.Exception.HandleException.ChangeExceptionLanguage(ex, this); } }
public void Delete(HPS.BLL.CarSystemBLL.BLLCarSystem_T.CarSystem_TField fieldName, Object value) { try { _dataObject.DeleteByField(fieldName.ToString(), value); }catch (System.Exception ex) { throw Hepsa.Core.Exception.HandleException.ChangeExceptionLanguage(ex, this); } }