record-my-ruck/RecordMyRuck/Models/IRuckRepository.cs

10 lines
205 B
C#
Raw Normal View History

2024-05-17 04:30:18 +00:00
namespace RecordMyRuck.Models
{
public interface IRuckRepository
{
Ruck? Get(DateTime dateTime);
IEnumerable<Ruck> GetAll();
void CreateRuck(Ruck ruck);
}
}