Files
JudoWeb/API/Repository/AgeGroup/IAgeGroupService.cs
2025-12-07 12:07:10 +01:00

15 lines
456 B
C#

using API.Models.Internal.Altersgruppen;
namespace API.Repository.AgeGroup
{
public interface IAgeGroupService
{
public Task<List<AltersGruppe>> GetAllAsync();
public Task<AltersGruppe?> GetAsync(int id);
public Task<AltersGruppe> CreateAsync(AltersGruppe altersGruppe);
public Task<AltersGruppe?> DeleteAsync(int id);
public Task<AltersGruppe?> UpdateAsync(int id, AltersGruppe altersGruppe);
}
}