Beispiel #1
0
 /// <summary>
 /// 개체 구하기
 /// </summary>
 /// <param name="pDataRow">데이타 로우</param>
 /// <returns>메뉴 설정 개체</returns>
 public ShipmentPlanRegisterEntity GetEntity(DataRow pDataRow)
 {
     try
     {
         ShipmentPlanRegisterEntity pShipmentPlanRegisterEntity = new ShipmentPlanRegisterProvider(null).GetEntity(pDataRow);
         return(pShipmentPlanRegisterEntity);
     }
     catch (Exception pException)
     {
         throw new ExceptionManager
               (
                   this,
                   "GetEntity(pDataRow)",
                   pException
               );
     }
 }
Beispiel #2
0
 /// <summary>
 /// 언어 정보 조회
 /// </summary>
 public DataTable Sample_Info_Sub(ShipmentPlanRegisterEntity pShipmentPlanRegister)
 {
     try
     {
         using (DBManager pDBManager = new DBManager())
         {
             DataTable pDataTable = new ShipmentPlanRegisterProvider(pDBManager).Sample_Info_Mst(pShipmentPlanRegister);
             return(pDataTable);
         }
     }
     catch (ExceptionManager pExceptionManager)
     {
         throw pExceptionManager;
     }
     catch (Exception pException)
     {
         throw new ExceptionManager(this, "Sample_Info_Sub(ShipmentPlanRegisterEntity pShipmentPlanRegister)", pException);
     }
 }