12 lines
423 B
C#
12 lines
423 B
C#
using MeetTheTeacher.Model;
|
|
|
|
namespace MeetTheTeacher.Export;
|
|
|
|
/// <summary>
|
|
/// Default implementation of <see cref="IExporterProvider"/> which returns the following exporters:
|
|
/// <see cref="CsvDataExporter"/> and <see cref="HtmlDataExporter"/>
|
|
/// </summary>
|
|
public sealed class DefaultExporterProvider : IExporterProvider
|
|
{
|
|
public IDataExporter GetExporter(ExportFormat exportFormat) => null!; // TODO
|
|
}
|