tests: add test for unit of work

This commit is contained in:
Stevan Freeborn
2024-08-23 08:32:34 -05:00
parent 886eb2f855
commit 3739164960
14 changed files with 428 additions and 36 deletions
+2
View File
@@ -14,5 +14,7 @@ class Sdn : Entity
public string VesselOwner { get; set; } = string.Empty;
public string Remarks { get; set; } = string.Empty;
public virtual ICollection<Address> Addresses { get; set; } = [];
public virtual ICollection<Alias> Aliases { get; set; } = [];
public virtual ICollection<Comment> Comments { get; set; } = [];
}