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