CaffGeek/MBACNationals

View on GitHub
ReadModels/Interfaces/ICommandQueries.cs

Summary

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

namespace MBACNationals.ReadModels
{
    public interface ICommandQueries
    {
        List<CommandQueries.Tournament> GetTournaments();
        
        CommandQueries.Participant GetParticipant(Guid guid);

        List<CommandQueries.Participant> GetTeamParticipants(Guid teamId);

        CommandQueries.Match GetMatch(string year, string division, int game, string slot);
    }
}