Ignore:
Timestamp:
08/24/26 20:57:09 (13 days ago)
Author:
kikisrbinoska <srbinoskakristina07@…>
Branches:
main
Parents:
a6e33d1
Message:

Added corrected entitef from the ER diagram and changes for the logic to be coresponding to the ddl

Location:
ChapterX.Application/Writer/Commands
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ChapterX.Application/Writer/Commands/AddHandler.cs

    ra6e33d1 re882b92  
    2020            var writer = new Domain.Entities.Writer
    2121            {
    22                 Id = request.UserId
     22                Id = request.UserId,
     23                Bio = request.Bio
    2324            };
    2425
  • ChapterX.Application/Writer/Commands/UpdateHandler.cs

    ra6e33d1 re882b92  
    2222                return new UpdateResponse(false);
    2323
    24             // No updatable fields on Writer entity
     24            writer.Bio = request.Bio;
    2525
    2626            await _writerRepository.UpdateAsync(writer, cancellationToken);
Note: See TracChangeset for help on using the changeset viewer.