You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Returns a new <typeparamref name="TEntity"/> that incorporates the modification of a single fact into an entity.
15
+
/// </summary>
16
+
/// <typeparam name="TEntity">The type of the entity to be modified.</typeparam>
17
+
/// <param name="entity">The entity to be modified.</param>
18
+
/// <param name="fact">The fact that modifies the entity.</param>
19
+
/// <returns>A new <typeparamref name="TEntity"/> that incorporates the modification of <paramref name="fact"/> into <paramref name="entity"/>.</returns>
/// Returns a new <typeparamref name="TEntity"/> that incorporates the modifications of a set of facts into an entity.
14
27
/// </summary>
15
28
/// <typeparam name="TEntity">The type of the entity to be modified.</typeparam>
16
-
/// <param name="facts">The facts that modify the entity.</param>
17
29
/// <param name="entity">The entity to be modified.</param>
30
+
/// <param name="facts">The facts that modify the entity.</param>
18
31
/// <returns>A new <typeparamref name="TEntity"/> that incorporates the modifications of <paramref name="facts"/> into <paramref name="entity"/>.</returns>
/// Returns a new instance of <typeparamref name="TEntity"/> that incorporates the modification of a command into an entity.
50
+
/// Returns a new instance of <typeparamref name="TEntity"/> that incorporates the modifications of a command into an entity.
31
51
/// </summary>
32
52
/// <typeparam name="TEntity">The type of the entity to be modified.</typeparam>
33
53
/// <param name="entity">The entity to be modified.</param>
34
54
/// <param name="command">The command to execute.</param>
35
-
/// <returns>A new instace of <typeparamref name="TEntity"/> that incorporates the modification of <paramref name="command"/> into <paramref name="entity"/>.</returns>
55
+
/// <returns>A new instace of <typeparamref name="TEntity"/> that incorporates the modifications of <paramref name="command"/> into <paramref name="entity"/>.</returns>
36
56
/// <remarks>
37
57
/// This method is ONLY intended to be used for business logic tests.
0 commit comments