public void GetAllBy(HPS.BLL.MessageRecipientBLL.BLLMessageRecipient_T.MessageRecipient_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 void Delete(HPS.BLL.MessageRecipientBLL.BLLMessageRecipient_T.MessageRecipient_TField fieldName, Object value) { try { _dataObject.DeleteByField(fieldName.ToString(), value); } catch (System.Exception ex) { throw Hepsa.Core.Exception.HandleException.ChangeExceptionLanguage(ex, this); } }
public List <HPS.BLL.MessageRecipientBLL.BLLMessageRecipient_T> GetAllBy(HPS.BLL.MessageRecipientBLL.BLLMessageRecipient_T.MessageRecipient_TField fieldName, Object value) { try { return(_dataObject.SelectByField(fieldName.ToString(), value)); } catch (System.Exception ex) { throw Hepsa.Core.Exception.HandleException.ChangeExceptionLanguage(ex, this); } }