leaky-ships/backend/SinkyShipsAPI/Repositories/SessionRepository.cs
2022-08-06 01:03:45 +02:00

26 lines
No EOL
522 B
C#

using SinkyShipsAPI.Model;
namespace SinkyShipsAPI.Repositories;
public class SessionRepository : IRepository<Session>
{
public ValueTask<Session> GetById(Guid id)
{
throw new NotImplementedException();
}
public bool Create(Session entity)
{
throw new NotImplementedException();
}
public bool Update(Session entity)
{
throw new NotImplementedException();
}
public bool Delete(Session entity)
{
throw new NotImplementedException();
}
}