CaffGeek/MBACNationals

View on GitHub
ReadModels/Interfaces/IContingentTravelPlanQueries.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System.Collections.Generic;
namespace MBACNationals.ReadModels
{
    public interface IContingentTravelPlanQueries
    {
        List<ContingentTravelPlanQueries.ContingentTravelPlans> GetAllTravelPlans(string year);
        ContingentTravelPlanQueries.ContingentTravelPlans GetTravelPlans(string year, string province);

        List<ContingentTravelPlanQueries.ContingentRooms> GetAllRooms(string year);
        ContingentTravelPlanQueries.ContingentRooms GetRooms(string year, string province);
    }
}