예제 #1
0
 /// <summary>
 /// 언어 정보 저장
 /// </summary>
 public bool EquipmentCheck_Save(EquipmentCheckEntity pEquipmentCheckEntity)
 {
     try
     {
         using (DBManager pDBManager = new DBManager())
         {
             bool isReturn = new EquipmentCheckProvider(pDBManager).EquipmentCheck_Save(pEquipmentCheckEntity);
             return(isReturn);
         }
     }
     catch (ExceptionManager pExceptionManager)
     {
         throw pExceptionManager;
     }
     catch (Exception pException)
     {
         throw new ExceptionManager(this, "EquipmentCheck_Save(EquipmentCheckEntity pEquipmentCheckEntity)", pException);
     }
 }
예제 #2
0
 public DataTable EquipmentCheck_Sub(EquipmentCheckEntity pEquipmentCheckEntity)
 {
     try
     {
         using (DBManager pDBManager = new DBManager())
         {
             DataTable pDataTable = new EquipmentCheckProvider(pDBManager).EquipmentCheck_Sub(pEquipmentCheckEntity);
             return(pDataTable);
         }
     }
     catch (ExceptionManager pExceptionManager)
     {
         throw pExceptionManager;
     }
     catch (Exception pException)
     {
         throw new ExceptionManager(this, "EquipmentCheck_Sub(EquipmentCheckEntity pEquipmentCheckEntity)", pException);
     }
 }