/// <summary> /// 개체 구하기 /// </summary> /// <param name="pDataRow">데이타 로우</param> /// <returns>메뉴 설정 개체</returns> public EquipmentChangeEntity GetEntity(DataRow pDataRow) { try { EquipmentChangeEntity pListofManagementEntity = new EquipmentChangeProvider(null).GetEntity(pDataRow); return(pListofManagementEntity); } catch (Exception pException) { throw new ExceptionManager ( this, "GetEntity(pDataRow)", pException ); } }
/// <summary> /// 언어 정보 저장 /// </summary> public bool EquipmentChange_Save(EquipmentChangeEntity pEquipmentChangeEntity) { try { using (DBManager pDBManager = new DBManager()) { bool isReturn = new EquipmentChangeProvider(pDBManager).EquipmentChange_Save(pEquipmentChangeEntity); return(isReturn); } } catch (ExceptionManager pExceptionManager) { throw pExceptionManager; } catch (Exception pException) { throw new ExceptionManager(this, "EquipmentChange_Save(EquipmentChangeEntity pEquipmentChangeEntity)", pException); } }
public DataTable EquipmentChange_Sub(EquipmentChangeEntity pEquipmentChangeEntity) { try { using (DBManager pDBManager = new DBManager()) { DataTable pDataTable = new EquipmentChangeProvider(pDBManager).EquipmentChange_Sub(pEquipmentChangeEntity); return(pDataTable); } } catch (ExceptionManager pExceptionManager) { throw pExceptionManager; } catch (Exception pException) { throw new ExceptionManager(this, "EquipmentChange_Sub(EquipmentChangeEntity pEquipmentChangeEntity)", pException); } }