leaky-ships/backend/LeakyShipsAPI/Repositories/SessionRepository.cs
aronmal cf92993e8a
Corrected project name
Replaced "Sinky" with "Leaky" in the backend
2022-08-06 22:30:25 +02:00

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();
}
}