From 8a90f9d0895c3b1c9c6a77394ed32e47274a68d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=B7=B3?= Date: Thu, 21 Sep 2023 19:59:38 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E7=AE=80=E5=8C=96=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../WebFirstManager/Impl/WebFirstService.cs | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/Yi.Furion.Net6/Yi.Framework.Module/WebFirstManager/Impl/WebFirstService.cs b/Yi.Furion.Net6/Yi.Framework.Module/WebFirstManager/Impl/WebFirstService.cs index d0e57a30..905642e2 100644 --- a/Yi.Furion.Net6/Yi.Framework.Module/WebFirstManager/Impl/WebFirstService.cs +++ b/Yi.Furion.Net6/Yi.Framework.Module/WebFirstManager/Impl/WebFirstService.cs @@ -37,7 +37,7 @@ namespace Yi.Framework.Module.WebFirstManager.Impl var tables = await _tableRepository.GetListAsync(); foreach (var table in tables) { - await BuildSingleTableAsync(table); + await _templateManager.HandlerAsync(table); } } @@ -50,21 +50,5 @@ namespace Yi.Framework.Module.WebFirstManager.Impl public async Task PostBuildTableAsync() { } - - - - - - - - /// - /// 每次去构建一张表的数据 - /// - /// - /// - private async Task BuildSingleTableAsync(TableEntity table) - { - await _templateManager.HandlerAsync(table); - } } }