public override async Task <TContentType> ReadAsync <TContentType>(IFileReaderModel model) { if (!IsExistsFile(model.FilePath)) { throw new FileNotFoundException("Could not find file!", model.FilePath); } return(await GetFileContent <TContentType>(model.FilePath)); }
public abstract Task <TContentType> ReadAsync <TContentType>(IFileReaderModel model);