feat(DbRepositoryTests): ReadAsync_ShouldReturnUpdated und ReadAsync_ShouldNotReturnDeleted Tests

This commit is contained in:
Developer 02
2025-04-22 10:09:47 +02:00
parent c955220310
commit 85787e7054
4 changed files with 51 additions and 7 deletions

View File

@@ -2,11 +2,11 @@
public class UserBase
{
public required string FirstName { get; init; }
public required string FirstName { get; set; }
public required string Email { get; init; }
public required string Email { get; set; }
public required int Age { get; init; }
public required int Age { get; set; }
public override int GetHashCode() => HashCode.Combine(FirstName, Email, Age);