-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0b059dc
commit 0078411
Showing
99 changed files
with
298 additions
and
397 deletions.
There are no files selected for viewing
14 changes: 0 additions & 14 deletions
14
src/1-BuildingBlocks/Application/Notifications/INotificationHandler.cs
This file was deleted.
Oops, something went wrong.
31 changes: 0 additions & 31 deletions
31
src/1-BuildingBlocks/Application/Notifications/Notification.cs
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...cts/Services/IAuthenticatedUserService.cs → ...ion/Services/IAuthenticatedUserService.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
13 changes: 13 additions & 0 deletions
13
src/1-BuildingBlocks/Application/Services/INotificationService.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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace TaskoMask.BuildingBlocks.Application.Services; | ||
|
||
public interface INotificationService | ||
{ | ||
void Add(string notification); | ||
void AddRange(List<string> notifications); | ||
List<string> GetList(); | ||
List<string> GetListAndReset(); | ||
bool HasAny(); | ||
void Reset(); | ||
} |
2 changes: 1 addition & 1 deletion
2
...s/Domain/Data/IBaseAggregateRepository.cs → ...main/Services/IBaseAggregateRepository.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
namespace TaskoMask.BuildingBlocks.Domain.Services; | ||
|
||
public interface ISpecification<TEntity> | ||
{ | ||
/// <summary> | ||
/// Checks if a given entity satisfies the specification's criteria. | ||
/// </summary> | ||
/// <param name="entity">The entity to evaluate.</param> | ||
/// <returns>True if the entity satisfies the specification; otherwise, false.</returns> | ||
bool IsSatisfiedBy(TEntity entity); | ||
} |
This file was deleted.
Oops, something went wrong.
48 changes: 0 additions & 48 deletions
48
src/1-BuildingBlocks/Infrastructure/Behaviors/BehaviorExtensions.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
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 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
15 changes: 0 additions & 15 deletions
15
src/1-BuildingBlocks/Infrastructure/EventSourcing/EventStoreExtensions.cs
This file was deleted.
Oops, something went wrong.
32 changes: 0 additions & 32 deletions
32
src/1-BuildingBlocks/Infrastructure/Exceptions/ExceptionExtensions.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
Oops, something went wrong.