using Core.Entities; using Core.Models; namespace Core.Services; /// /// Parses student field CSVs and merges them into markdown notes. /// public interface IStudentNotesImportService { StudentNotesImportResult Parse( Stream stream, ICollection students, IReadOnlyDictionary existingNotesByStudentId); }