public int GetMaxModelFloor(NewAppData model)
 {
     try
     {
         return(handler.GetMaxModelFloor(model));
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception ex)
     {
         var exception = new CategoryDicException(1, "GetMaxModelFloor", ex);
         Logger.Log(Level.Error, "GetMaxModelFloor", exception);
         throw;
     }
 }
 public List <NewAppData> GetNewAppData()
 {
     try
     {
         return(handler.GetNewAppData());
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception ex)
     {
         var exception = new CategoryDicException(1, "GetNewAppData", ex);
         Logger.Log(Level.Error, "GetNewAppData", exception);
         throw;
     }
 }
 public bool InsertNewAppData(NewAppData model)
 {
     try
     {
         return(handler.InsertNewAppData(model));
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception ex)
     {
         var exception = new CategoryDicException(1, "InsertNewAppData", ex);
         Logger.Log(Level.Error, "InsertNewAppData", exception);
         throw;
     }
 }
 public List <CategoryDic> GetCategoryIdName()
 {
     try
     {
         return(handler.GetCategoryIdName());
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception ex)
     {
         var exception = new CategoryDicException(1, "GetCategoryIdName", ex);
         Logger.Log(Level.Error, "GetCategoryIdName", exception);
         throw;
     }
 }