NEW: IResponseRepository and finish renaming
This commit is contained in:
15
Server/Repository/IResponseRepository.cs
Normal file
15
Server/Repository/IResponseRepository.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SZUAbsolventenverein.Module.EventRegistration.Repository
|
||||
{
|
||||
public interface IResponseRepository
|
||||
{
|
||||
IEnumerable<Models.Response> GetResponses(int ModuleId);
|
||||
Models.Response GetResponse(int EventRegistrationId);
|
||||
Models.Response GetResponse(int EventRegistrationId, bool tracking);
|
||||
Models.Response AddResponse(Models.Event EventRegistration);
|
||||
Models.Response UpdateResponse(Models.Event EventRegistration);
|
||||
void DeleteResponse(int EventRegistrationId);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user