Files
chapter-organizer/WebApp/Services/IEventOccurrenceService.cs
T
poprhythm 9668ec162d Add Event Calendar feature with event occurrences service integration
Introduced a new Event Calendar component that displays scheduled events using the Heron.MudCalendar. Implemented IEventOccurrenceService to fetch event occurrences, and added mock data for initial testing. Updated navigation menu to include a link to the Event Calendar.
2025-12-27 13:25:17 -05:00

18 lines
445 B
C#

using Core.Entities;
namespace WebApp.Services;
public interface IEventOccurrenceService
{
/// <summary>
/// Gets all event occurrences.
/// </summary>
Task<IEnumerable<EventOccurrence>> GetEventOccurrencesAsync();
/// <summary>
/// Gets event occurrences within the specified date range.
/// </summary>
Task<IEnumerable<EventOccurrence>> GetEventOccurrencesForDateRangeAsync(DateTime start, DateTime end);
}