ref: project structure
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using mws.backend.dotnet.application.Common.Repositories;
|
||||
|
||||
namespace mws.backend.dotnet.application.Common;
|
||||
|
||||
public interface IUnitOfWork
|
||||
{
|
||||
IUserRepository Users { get; }
|
||||
IProjectRepository Projects { get; }
|
||||
ITaskRepository Tasks { get; }
|
||||
IDocumentRepository Documents { get; }
|
||||
IRoleRepository Roles { get; }
|
||||
IMasterDataRepository MasterData { get; }
|
||||
|
||||
Task<int> SaveChangesAsync(CancellationToken ct = default);
|
||||
}
|
||||
Reference in New Issue
Block a user