Changeset e882b92 for ChapterX.Application/Writer/Commands
- Timestamp:
- 08/24/26 20:57:09 (13 days ago)
- Branches:
- main
- Parents:
- a6e33d1
- Location:
- ChapterX.Application/Writer/Commands
- Files:
-
- 2 edited
-
AddHandler.cs (modified) (1 diff)
-
UpdateHandler.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ChapterX.Application/Writer/Commands/AddHandler.cs
ra6e33d1 re882b92 20 20 var writer = new Domain.Entities.Writer 21 21 { 22 Id = request.UserId 22 Id = request.UserId, 23 Bio = request.Bio 23 24 }; 24 25 -
ChapterX.Application/Writer/Commands/UpdateHandler.cs
ra6e33d1 re882b92 22 22 return new UpdateResponse(false); 23 23 24 // No updatable fields on Writer entity24 writer.Bio = request.Bio; 25 25 26 26 await _writerRepository.UpdateAsync(writer, cancellationToken);
Note:
See TracChangeset
for help on using the changeset viewer.
