diff --git a/Server/Services/EventRegistrationService.cs b/Server/Services/EventRegistrationService.cs index 3d2f62a..a7a964f 100644 --- a/Server/Services/EventRegistrationService.cs +++ b/Server/Services/EventRegistrationService.cs @@ -7,6 +7,7 @@ using Oqtane.Infrastructure; using Oqtane.Models; using Oqtane.Security; using Oqtane.Shared; +using SZUAbsolventenverein.Module.EventRegistration.Models; using SZUAbsolventenverein.Module.EventRegistration.Repository; namespace SZUAbsolventenverein.Module.EventRegistration.Services @@ -28,7 +29,42 @@ namespace SZUAbsolventenverein.Module.EventRegistration.Services _alias = tenantManager.GetAlias(); } - public Task> GetEventRegistrationsAsync(int ModuleId) + public Task AddEventAsync(Event NewEvent) + { + throw new System.NotImplementedException(); + } + + public Task AddOrUpdateResponseAsync(int EventId, int ModuleId, bool ResponseType) + { + throw new System.NotImplementedException(); + } + + public Task DeleteEventAsync(int EventId, int ModuleId) + { + throw new System.NotImplementedException(); + } + + public Task<(Event, Response)> GetEventDetails(int EventId, int ModuleId) + { + throw new System.NotImplementedException(); + } + + public Task> GetEventResponses(int EventId, int ModuleId) + { + throw new System.NotImplementedException(); + } + + public Task> GetEventsAsync(int ModuleId) + { + throw new System.NotImplementedException(); + } + + public Task UpdateEventAsync(Event NewEvent) + { + throw new System.NotImplementedException(); + } + + /*public Task> GetEventRegistrationsAsync(int ModuleId) { if (_userPermissions.IsAuthorized(_accessor.HttpContext.User, _alias.SiteId, EntityNames.Module, ModuleId, PermissionNames.View)) { @@ -96,6 +132,6 @@ namespace SZUAbsolventenverein.Module.EventRegistration.Services _logger.Log(LogLevel.Error, this, LogFunction.Security, "Unauthorized EventRegistration Delete Attempt {EventRegistrationId} {ModuleId}", EventRegistrationId, ModuleId); } return Task.CompletedTask; - } + }*/ } }