using Core.Entities; using Microsoft.EntityFrameworkCore; namespace WebApp.Services; /// /// Service for loading meeting schedule data from the database. /// public interface IMeetingScheduleDataService { /// /// Loads all teams with their events and students. /// Task LoadTeamsAsync(); /// /// Loads all students with their teams, event rankings, and related data. /// Task LoadStudentsAsync(); }