David Claeys 8d198d46e0
All checks were successful
Build docker container / build (push) Successful in 5m4s
initial commit
2024-05-10 16:06:42 +02:00

16 lines
352 B
C#

using System;
using System.Collections.Generic;
using TelebilbaoEpg.Database.Models;
namespace TelebilbaoEpg.Database.Repository
{
public interface IBroadCastRepository
{
List<BroadCast> GetBroadCasts(DateOnly day);
List<BroadCast> GetBroadCasts(DateOnly from, DateOnly to);
void Add(BroadCast broadCast);
}
}