ref: project structure
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace mws.backend.dotnet.application.Common.Repositories;
|
||||
|
||||
public interface IRepository<in T> where T : class
|
||||
{
|
||||
void Add(T entity);
|
||||
void Remove(T entity);
|
||||
}
|
||||
Reference in New Issue
Block a user