LCOV - code coverage report | ||||||||||||||||||
|
||||||||||||||||||
Line data Source code 1 : using System; 2 : 3 : namespace Cqrs.Domain.Factories 4 : { 5 : public interface IAggregateFactory 6 : { 7 0 : TAggregate CreateAggregate<TAggregate>(Guid? rsn = null, bool tryDependencyResolutionFirst = true); 8 : 9 0 : object CreateAggregate(Type aggregateType, Guid? rsn = null, bool tryDependencyResolutionFirst = true); 10 : } 11 : } |
Generated by: LCOV version 1.10 |