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