public CreateChannelCommandHandler( Fifthweek.Api.Identity.Shared.Membership.IRequesterSecurity requesterSecurity, Fifthweek.Api.Blogs.Shared.IBlogSecurity blogSecurity, Fifthweek.Api.Persistence.IFifthweekDbConnectionFactory connectionFactory, Fifthweek.Payments.SnapshotCreation.IRequestSnapshotService requestSnapshot) { if (requesterSecurity == null) { throw new ArgumentNullException("requesterSecurity"); } if (blogSecurity == null) { throw new ArgumentNullException("blogSecurity"); } if (connectionFactory == null) { throw new ArgumentNullException("connectionFactory"); } if (requestSnapshot == null) { throw new ArgumentNullException("requestSnapshot"); } this.requesterSecurity = requesterSecurity; this.blogSecurity = blogSecurity; this.connectionFactory = connectionFactory; this.requestSnapshot = requestSnapshot; }
public ChannelOwnership( Fifthweek.Api.Persistence.IFifthweekDbConnectionFactory connectionFactory) { if (connectionFactory == null) { throw new ArgumentNullException("connectionFactory"); } this.connectionFactory = connectionFactory; }
public GetAllStandardUsersDbStatement( Fifthweek.Api.Persistence.IFifthweekDbConnectionFactory connectionFactory) { if (connectionFactory == null) { throw new ArgumentNullException("connectionFactory"); } this.connectionFactory = connectionFactory; }
public DeleteTestUserAccountsDbStatement( Fifthweek.Api.Persistence.IFifthweekDbConnectionFactory connectionFactory) { if (connectionFactory == null) { throw new ArgumentNullException("connectionFactory"); } this.connectionFactory = connectionFactory; }
public GetFilesEligibleForGarbageCollectionDbStatement( Fifthweek.Api.Persistence.IFifthweekDbConnectionFactory connectionFactory) { if (connectionFactory == null) { throw new ArgumentNullException("connectionFactory"); } this.connectionFactory = connectionFactory; }
public SetFileProcessingCompleteDbStatement( Fifthweek.Api.Persistence.IFifthweekDbConnectionFactory connectionFactory) { if (connectionFactory == null) { throw new ArgumentNullException("connectionFactory"); } this.connectionFactory = connectionFactory; }
public TryGetLatestMessageQueryHandler( Fifthweek.Api.Persistence.IFifthweekDbConnectionFactory connectionFactory) { if (connectionFactory == null) { throw new ArgumentNullException("connectionFactory"); } this.connectionFactory = connectionFactory; }
public DeleteAllMessagesCommandHandler( Fifthweek.Api.Persistence.IFifthweekDbConnectionFactory connectionFactory) { if (connectionFactory == null) { throw new ArgumentNullException("connectionFactory"); } this.connectionFactory = connectionFactory; }
public SetLatestMessageDbStatement( Fifthweek.Api.Persistence.IFifthweekDbConnectionFactory connectionFactory) { if (connectionFactory == null) { throw new ArgumentNullException("connectionFactory"); } this.connectionFactory = connectionFactory; }
public UpdateChannelDbStatement( Fifthweek.Api.Persistence.IFifthweekDbConnectionFactory connectionFactory, Fifthweek.Payments.SnapshotCreation.IRequestSnapshotService requestSnapshot) { if (connectionFactory == null) { throw new ArgumentNullException("connectionFactory"); } if (requestSnapshot == null) { throw new ArgumentNullException("requestSnapshot"); } this.connectionFactory = connectionFactory; this.requestSnapshot = requestSnapshot; }
public CreateSubscriberSnapshotDbStatement( Fifthweek.Payments.SnapshotCreation.ISnapshotTimestampCreator timestampCreator, Fifthweek.Api.Persistence.IFifthweekDbConnectionFactory connectionFactory) { if (timestampCreator == null) { throw new ArgumentNullException("timestampCreator"); } if (connectionFactory == null) { throw new ArgumentNullException("connectionFactory"); } this.timestampCreator = timestampCreator; this.connectionFactory = connectionFactory; }
public CreateCreatorFreeAccessUsersSnapshotDbStatement( Fifthweek.Shared.IGuidCreator guidCreator, Fifthweek.Payments.SnapshotCreation.ISnapshotTimestampCreator timestampCreator, Fifthweek.Api.Persistence.IFifthweekDbConnectionFactory connectionFactory) { if (guidCreator == null) { throw new ArgumentNullException("guidCreator"); } if (timestampCreator == null) { throw new ArgumentNullException("timestampCreator"); } if (connectionFactory == null) { throw new ArgumentNullException("connectionFactory"); } this.guidCreator = guidCreator; this.timestampCreator = timestampCreator; this.connectionFactory = connectionFactory; }