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.
This commit is contained in:
2025-12-27 13:25:17 -05:00
parent 5c1e0b7444
commit 9668ec162d
8 changed files with 231 additions and 0 deletions
@@ -0,0 +1,17 @@
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);
}