示例#1
0
 public void GetAllBy(HPS.BLL.BoxingBLL.BLLBoxing_T.Boxing_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);
     }
 }
示例#2
0
 public void Delete(HPS.BLL.BoxingBLL.BLLBoxing_T.Boxing_TField fieldName, Object value)
 {
     try
     {
         _dataObject.DeleteByField(fieldName.ToString(), value);
     }
     catch (System.Exception ex)
     {
         throw Hepsa.Core.Exception.HandleException.ChangeExceptionLanguage(ex, this);
     }
 }
示例#3
0
 public List <HPS.BLL.BoxingBLL.BLLBoxing_T> GetAllBy(HPS.BLL.BoxingBLL.BLLBoxing_T.Boxing_TField fieldName, Object value)
 {
     try
     {
         return(_dataObject.SelectByField(fieldName.ToString(), value));
     }
     catch (System.Exception ex)
     {
         throw Hepsa.Core.Exception.HandleException.ChangeExceptionLanguage(ex, this);
     }
 }