14 lines
No EOL
227 B
C#
14 lines
No EOL
227 B
C#
using System.Dynamic;
|
|
|
|
namespace SinkyShipsAPI.Repositories;
|
|
|
|
public interface IRepository<T>
|
|
{
|
|
ValueTask<T> GetById(Guid id);
|
|
|
|
bool Create(T entity);
|
|
|
|
bool Update(T entity);
|
|
|
|
bool Delete(T entity);
|
|
} |