CaffGeek/MBACNationals

View on GitHub
ReadModels/Interfaces/IParticipantQueries.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System.Collections.Generic;

namespace MBACNationals.ReadModels
{
    public interface IParticipantQueries
    {
        List<ParticipantQueries.Participant> GetParticipants(string year);

        ParticipantQueries.Participant GetParticipant(System.Guid id);

        List<ParticipantQueries.Participant> GetAlternates(string year);
    }
}