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

14 lines
No EOL
227 B
C#

using System.Dynamic;
namespace LeakyShipsAPI.Repositories;
public interface IRepository<T>
{
ValueTask<T> GetById(Guid id);
bool Create(T entity);
bool Update(T entity);
bool Delete(T entity);
}