using Application.Classes; using Application.DataTransferObjects.DesertStormParticipants; namespace Application.Interfaces; public interface IDesertStormParticipantRepository { Task> GetDesertStormParticipantAsync(Guid desertStormParticipantId, CancellationToken cancellationToken); Task> InsertDesertStormParticipantAsync( List createDesertStormParticipants, CancellationToken cancellationToken); Task>> GetPlayerDesertStormParticipantsAsync(Guid playerId, int last, CancellationToken cancellationToken); Task> UpdateDesertStormParticipantAsync( UpdateDesertStormParticipantDto updateDesertStormParticipantDto, CancellationToken cancellationToken); }