LCOV - code coverage report | ||||||||||||||||||
|
||||||||||||||||||
Line data Source code 1 : using System.Collections.Generic; 2 : using Cqrs.Domain; 3 : using Cqrs.Events; 4 : 5 : namespace Cqrs.Akka.Domain 6 : { 7 : public interface IAkkaRepository<TAuthenticationToken> : IRepository<TAuthenticationToken> 8 : { 9 0 : void LoadAggregateHistory<TAggregateRoot>(TAggregateRoot aggregate, IList<IEvent<TAuthenticationToken>> events = null, bool throwExceptionOnNoEvents = true) 10 : where TAggregateRoot : IAggregateRoot<TAuthenticationToken>; 11 : } 12 : } |
Generated by: LCOV version 1.10 |