blob: 77f63412200d1493878011af6fdf70d3fc9ba51c (
plain)
1
2
3
4
5
6
7
8
|
using Enmarcha.Backend.Types;
namespace Enmarcha.Backend.Services.Providers;
public interface ITransitProvider
{
Task<List<ConsolidatedCirculation>> GetCirculationsAsync(string stopId, DateTime now);
}
|