using MeetTheTeacher.Model; namespace MeetTheTeacher.Export; /// /// Provides an for the given /// public interface IExporterProvider { /// /// Returns an for the given /// /// Requested export format /// which supports exporting in the desired format IDataExporter GetExporter(ExportFormat exportFormat); }