Created backend

This commit is contained in:
CaptaiNiveau 2022-08-06 01:03:45 +02:00
parent 37f949a850
commit 167f9574d2
27 changed files with 534 additions and 0 deletions

View file

@ -0,0 +1,26 @@
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();
}
}