namespace RecordMyRuck.Models { public interface IRuckRepository { Ruck? Get(DateTime dateTime); IEnumerable GetAll(); void CreateRuck(Ruck ruck); } }