Files
parr_api/PARR.EsppTemplateSync/Services/ParserService.cs
Mikhail Kuznetsov ffb95ccf41 Структура
2023-08-31 12:04:05 +10:00

26 lines
450 B
C#

namespace PARR.EsppTemplateSync.Services
{
internal class ParserService : IParserService
{
public async Task<bool> ParseFileAsync(string path)
{
//TODO:
bool isSuccess = true;
return isSuccess;
}
public async Task<bool> ParseStringAsync(string str)
{
//TODO:
bool isSuccess = true;
return isSuccess;
}
}
}