leaky-ships/backend-C#/LeakyShipsAPI/Repositories/SessionRepository.cs

26 lines
No EOL
522 B
C#

using LeakyShipsAPI.Model;
namespace LeakyShipsAPI.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();
}
}