forked from kodlamaio-projects/nArchitecture.Gen
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: add new operation claims with last id
- Loading branch information
1 parent
a318378
commit 2cb34cb
Showing
6 changed files
with
13 additions
and
14 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
2 changes: 1 addition & 1 deletion
2
src/nArchGen/Domain/Templates/Command/Lines/CommandOperationClaimProperty.cs.sbn
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 +1 @@ | ||
public const string {{ command_name }} = "{{ feature_name | string.pascalcase }}.{{ command_name | string.pascalcase }}"; | ||
public const string {{ command_name }} = $"{_section}.{{ command_name | string.pascalcase }}"; |
2 changes: 1 addition & 1 deletion
2
src/nArchGen/Domain/Templates/Query/Lines/QueryOperationClaimProperty.cs.sbn
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 +1 @@ | ||
public const string {{ query_name }} = "{{ feature_name | string.pascalcase }}.{{ query_name | string.pascalcase }}"; | ||
public const string {{ query_name }} = $"{_section}.{{ query_name | string.pascalcase }}"; |