This file contains hidden or 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
| Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse } |
This file contains hidden or 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
| // usecase | |
| class UseCaseX | |
| { | |
| private readonly UserCreator _userCreator; | |
| private readonly UserRoleAssigner _userRoleAssigner; | |
| public Task<ErrorOr<UserDto>> Execute(Input input) | |
| { | |
| var trx = beginTransaction(); | |
| var creationResult = await _userCreator.Create(new {...}); |
OlderNewer