示例#1
0
 /// <summary>
 /// 개체 구하기
 /// </summary>
 /// <param name="pDataRow">데이타 로우</param>
 /// <returns>메뉴 설정 개체</returns>
 public EquipmentCheckEntity GetEntity(DataRow pDataRow)
 {
     try
     {
         EquipmentCheckEntity pListofManagementEntity = new EquipmentCheckProvider(null).GetEntity(pDataRow);
         return(pListofManagementEntity);
     }
     catch (Exception pException)
     {
         throw new ExceptionManager
               (
                   this,
                   "GetEntity(pDataRow)",
                   pException
               );
     }
 }
示例#2
0
 /// <summary>
 /// 언어 정보 저장
 /// </summary>
 public bool EquipmentCheck_Save(EquipmentCheckEntity pEquipmentCheckEntity)
 {
     try
     {
         using (DBManager pDBManager = new DBManager())
         {
             bool isReturn = new EquipmentCheckProvider(pDBManager).EquipmentCheck_Save(pEquipmentCheckEntity);
             return(isReturn);
         }
     }
     catch (ExceptionManager pExceptionManager)
     {
         throw pExceptionManager;
     }
     catch (Exception pException)
     {
         throw new ExceptionManager(this, "EquipmentCheck_Save(EquipmentCheckEntity pEquipmentCheckEntity)", pException);
     }
 }
示例#3
0
 public DataTable EquipmentCheck_Sub(EquipmentCheckEntity pEquipmentCheckEntity)
 {
     try
     {
         using (DBManager pDBManager = new DBManager())
         {
             DataTable pDataTable = new EquipmentCheckProvider(pDBManager).EquipmentCheck_Sub(pEquipmentCheckEntity);
             return(pDataTable);
         }
     }
     catch (ExceptionManager pExceptionManager)
     {
         throw pExceptionManager;
     }
     catch (Exception pException)
     {
         throw new ExceptionManager(this, "EquipmentCheck_Sub(EquipmentCheckEntity pEquipmentCheckEntity)", pException);
     }
 }