Пример #1
0
 /// <summary>
 /// 개체 구하기
 /// </summary>
 /// <param name="pDataRow">데이타 로우</param>
 /// <returns>메뉴 설정 개체</returns>
 public Gathering_InfoEntity GetEntity(DataRow pDataRow)
 {
     try
     {
         Gathering_InfoEntity pGathering_InfoEntity = new Gathering_InfoProvider(null).GetEntity(pDataRow);
         return pGathering_InfoEntity;
     }
     catch (Exception pException)
     {
         throw new ExceptionManager
         (
             this,
             "GetEntity(pDataRow)",
             pException
         );
     }
 }
Пример #2
0
 /// <summary>
 /// 언어 정보 저장
 /// </summary>
 public bool Gathering_Info_Info_Save(Gathering_InfoEntity pGathering_InfoEntity)
 {
     try
     {
         using (DBManager pDBManager = new DBManager())
         {
             bool isReturn = new Gathering_InfoProvider(pDBManager).Gathering_Info_Info_Save(pGathering_InfoEntity);
             return isReturn;
         }
     }
     catch (ExceptionManager pExceptionManager)
     {
         throw pExceptionManager;
     }
     catch (Exception pException)
     {
         throw new ExceptionManager(this, "Gathering_Info_Info_Save(Gathering_InfoEntity pGathering_InfoEntity, DataTable dt)", pException);
     }
 }
Пример #3
0
 public DataTable Gathering_Info_Info(Gathering_InfoEntity pGathering_InfoEntity)
 {
     try
     {
     using (DBManager pDBManager = new DBManager())
     {
         DataTable pDataTable = new Gathering_InfoProvider(pDBManager).Sample_Info_Mst(pGathering_InfoEntity);
         return pDataTable;
     }
     }
     catch (ExceptionManager pExceptionManager)
     {
     throw pExceptionManager;
     }
     catch (Exception pException)
     {
     throw new ExceptionManager(this, "Sample_Info(Gathering_InfoEntity pGathering_InfoEntity)", pException);
     }
 }