ex-ex-02-books/BooksApp/Books/DataLoading/CsvDataLoader.cs
github-classroom[bot] 49d2d70965
Initial commit
2025-06-03 15:21:16 +00:00

28 lines
No EOL
665 B
C#

namespace Books.DataLoading;
public sealed class CsvDataLoader : LoaderBase
{
private FileStream? _fileStream;
public CsvDataLoader(string filePath)
{
throw new NotImplementedException();
}
public override ValueTask DisposeAsync() => throw new NotImplementedException();
public override async ValueTask LoadAsync()
{
throw new NotImplementedException();
}
private async ValueTask<IReadOnlyCollection<Book>> LoadBooksAsync()
{
const char Separator = ';';
const int ExpectedNumberOfValues = 5;
throw new NotImplementedException();
}
}
// TODO CsvProcessingException