コード例 #1
0
ファイル: EMBusiness.cs プロジェクト: Leeyoonsung86/LeesSpace
 /// <summary>
 /// 개체 구하기
 /// </summary>
 /// <param name="pDataRow">데이타 로우</param>
 /// <returns>메뉴 설정 개체</returns>
 public EquipmentStopHistoryEntity GetEntity(DataRow pDataRow)
 {
     try
     {
         EquipmentStopHistoryEntity _pEquipmentStopHistoryEntity = new EquipmentStopHistoryProvider(null).GetEntity(pDataRow);
         return(_pEquipmentStopHistoryEntity);
     }
     catch (Exception pException)
     {
         throw new ExceptionManager
               (
                   this,
                   "GetEntity(pDataRow)",
                   pException
               );
     }
 }
コード例 #2
0
ファイル: EMBusiness.cs プロジェクト: Leeyoonsung86/LeesSpace
 /// <summary>
 /// 언어 정보 조회
 /// </summary>
 public DataTable EquipmentStopHistory_Mst(EquipmentStopHistoryEntity _pEquipmentStopHistoryEntity)
 {
     try
     {
         using (DBManager pDBManager = new DBManager())
         {
             DataTable pDataTable = new EquipmentStopHistoryProvider(pDBManager).EquipmentStopHistory_Mst(_pEquipmentStopHistoryEntity);
             return(pDataTable);
         }
     }
     catch (ExceptionManager pExceptionManager)
     {
         throw pExceptionManager;
     }
     catch (Exception pException)
     {
         throw new ExceptionManager(this, "EquipmentCheck_Sub(EquipmentCheckEntity pEquipmentCheckEntity)", pException);
     }
 }