File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ public abstract class Saga<TAggregate> : ISaga<TAggregate>
4040 protected ILogger logger ;
4141
4242 /// <summary>
43- /// Initializes a new instance of the <see cref="Saga{TAggregateRoot }"/> class.
43+ /// Initializes a new instance of the <see cref="Saga{TAggregate }"/> class.
4444 /// </summary>
4545 protected Saga ( )
4646 {
Original file line number Diff line number Diff line change @@ -22,11 +22,11 @@ public abstract class Service : IService
2222 /// <summary>
2323 /// Creates an initialised aggregate root.
2424 /// </summary>
25- /// <typeparam name="TAggregateRoot "></typeparam>
25+ /// <typeparam name="TAggregate "></typeparam>
2626 /// <returns>Implementation of IAggregate</returns>
27- public async Task < TAggregateRoot > CreateAggregate < TAggregateRoot > ( ) where TAggregateRoot : IAggregate
27+ public async Task < TAggregate > CreateAggregate < TAggregate > ( ) where TAggregate : IAggregate
2828 {
29- var aggregate = await aggregateFactory . Create < TAggregateRoot > ( ) ;
29+ var aggregate = await aggregateFactory . Create < TAggregate > ( ) ;
3030 return aggregate ;
3131 }
3232 }
You can’t perform that action at this time.
0 commit comments