-
Updated
Aug 19, 2021 - JavaScript
clean-architecture
Here are 3,526 public repositories matching this topic...
-
Updated
Sep 28, 2021 - C#
-
Updated
Oct 2, 2021 - C#
-
Updated
Oct 1, 2021 - C#
-
Updated
Jul 29, 2021
-
Updated
Aug 9, 2021 - Kotlin
-
Updated
Jun 9, 2020 - Go
-
Updated
Sep 12, 2021 - C#
-
Updated
Oct 1, 2021
-
Updated
Sep 13, 2021 - C#
-
Updated
Sep 29, 2021 - TypeScript
-
Updated
Oct 1, 2021 - Kotlin
-
Updated
Mar 28, 2021 - Kotlin
-
Updated
May 22, 2020 - Swift
Let's add MinVer and on successful builds generate a release.
-
Updated
Sep 30, 2021 - TypeScript
-
Updated
Oct 1, 2021 - Swift
-
Updated
Dec 4, 2019 - Java
-
Updated
Sep 25, 2021 - C#
Why not Hilt?
Why don't you use Hilt? Google says
Dagger and Hilt code can coexist in the same codebase. However, in most cases it is best to use Hilt to manage all of your usage of Dagger on Android.
-
Updated
Aug 25, 2021 - C#
-
Updated
Aug 31, 2021 - Go
-
Updated
Feb 22, 2021 - C#
-
Updated
Jul 7, 2021
-
Updated
May 10, 2021 - Kotlin
Expression Guard
An Expression-based Guard could be used to provide flexibility and could cover any case not already taken care of by the library, without the need to write your own guard clause method.
public static T AgainstExpression<T>([JetBrainsNotNull] this IGuardClause<T> guardClause, [JetBrainsNotNull] Func<T, bool> func, [JetBrainsNotNull] string message) where T : struct
{
if (func(gu
-
Updated
Jun 22, 2020 - Kotlin
-
Updated
Aug 25, 2021 - Dart
Improve this page
Add a description, image, and links to the clean-architecture topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the clean-architecture topic, visit your repo's landing page and select "manage topics."
https://github.com/kgrzybek/modular-monolith-with-ddd/blob/54d209639e501301e879aa0d0a84c9ea49e4689e/src/Modules/Meetings/Domain/Meetings/Rules/MeetingAttendeesLimitMustBeGreaterThanGuestsLimitRule.cs#L1-L21
I believe the comparison operator used in the
IsBroken
method is wrong because the rule is checking that meeting attendees limit must be greater than guests limit.