CaffGeek/MBACNationals

View on GitHub
ReadModels/Interfaces/IParticipantProfileQueries.cs

Summary

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

namespace MBACNationals.ReadModels
{
    public interface IParticipantProfileQueries
    {
        List<ParticipantProfileQueries.Participant> GetProfiles(int year);
        ParticipantProfileQueries.Participant GetProfile(System.Guid id);
    }
}