コード例 #1
0
ファイル: MOBusiness.cs プロジェクト: Leeyoonsung86/LeesSpace
 /// <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);
     }
 }
コード例 #2
0
ファイル: MOBusiness.cs プロジェクト: Leeyoonsung86/LeesSpace
 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);
     }
 }