mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
restructure seed
This commit is contained in:
@@ -6,11 +6,10 @@ namespace DataAccessLayer
|
||||
public interface IRepository<T>
|
||||
where T : class
|
||||
{
|
||||
|
||||
void Add(T entity);
|
||||
|
||||
IEnumerable<T> GetAll(int? limit, int? offset);
|
||||
|
||||
|
||||
T? GetById(Guid id);
|
||||
void Update(T entity);
|
||||
void Delete(Guid id);
|
||||
|
||||
Reference in New Issue
Block a user