-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Collapse Domain, Application, and Infrastructure code into one projec…
…t to have all files for a vertical slice in one folder
- Loading branch information
Showing
90 changed files
with
248 additions
and
417 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
application/account-management/Api/Signups/SignupEndpoints.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 0 additions & 23 deletions
23
application/account-management/Application/ApplicationConfiguration.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 5 additions & 3 deletions
8
...plication/Authentication/CompleteLogin.cs → .../Authentication/Commands/CompleteLogin.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 4 additions & 2 deletions
6
...ement/Application/Authentication/Logut.cs → ...ent/Core/Authentication/Commands/Logut.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 4 additions & 3 deletions
7
.../Application/Authentication/StartLogin.cs → ...ore/Authentication/Commands/StartLogin.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...Authentication/ILoginProcessRepository.cs → ...ication/Domain/ILoginProcessRepository.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
using PlatformPlatform.SharedKernel.DomainCore.Entities; | ||
|
||
namespace PlatformPlatform.AccountManagement.Domain.Authentication; | ||
namespace PlatformPlatform.AccountManagement.Core.Authentication.Domain; | ||
|
||
public interface ILoginRepository : ICrudRepository<Login, LoginId>; |
4 changes: 3 additions & 1 deletion
4
...management/Domain/Authentication/Login.cs → ...ement/Core/Authentication/Domain/Login.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
.../Authentication/LoginProcessRepository.cs → ...tication/Domain/LoginProcessRepository.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
using PlatformPlatform.AccountManagement.Domain.Authentication; | ||
using PlatformPlatform.AccountManagement.Core.Database; | ||
using PlatformPlatform.SharedKernel.InfrastructureCore.Persistence; | ||
|
||
namespace PlatformPlatform.AccountManagement.Infrastructure.Authentication; | ||
namespace PlatformPlatform.AccountManagement.Core.Authentication.Domain; | ||
|
||
public sealed class LoginRepository(AccountManagementDbContext accountManagementDbContext) | ||
: RepositoryBase<Login, LoginId>(accountManagementDbContext), ILoginRepository; |
Oops, something went wrong.