using SinkyShipsAPI.Model; namespace SinkyShipsAPI.Repositories; public class SessionRepository : IRepository { public ValueTask 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(); } }