table Template

This commit is contained in:
Mikhail Kuznetsov
2023-09-01 12:40:41 +10:00
parent d6f1752465
commit 21eb83a50f
11 changed files with 1173 additions and 8 deletions

View File

@@ -1,4 +1,5 @@
using Microsoft.Extensions.Logging;
using PARR.DAL.Models;
namespace PARR.EsppTemplateSync.Services
{
@@ -21,9 +22,16 @@ namespace PARR.EsppTemplateSync.Services
{
bool isSuccess = true;
//TOD if (str == null || str.Length <= 2)
//var await parserService.ParseStringAsync(str);
var template = await parserService.ParseStringAsync(str);
CheckChanges(template);
return isSuccess;
}
private void CheckChanges(Template template)
{
}
}
}