public StateRegistrationLogRepository(
     IIdGenerator idGenerator,
     DomainLogContext domainLogContext)
 {
     _idGenerator = idGenerator ?? throw new ArgumentNullException(nameof(idGenerator));
     _context     = domainLogContext ?? throw new ArgumentNullException(nameof(domainLogContext));
 }
Exemplo n.º 2
0
 public ForeignParticipantLogRepository(
     IIdGenerator idGenerator,
     DomainLogContext domainLogContext)
 {
     _idGenerator = idGenerator ?? throw new ArgumentNullException(nameof(idGenerator));
     _context     = domainLogContext ?? throw new ArgumentNullException(nameof(domainLogContext));
 }