public ProjectionManager(IPEndPoint endpoint, UserCredentials credentials, IAdaptEvents adapter) { _adapter = adapter; _endpoint = endpoint; _credentials = credentials; _budgetLines = new Dictionary<string, BudgetLinesProjection>(); _budget = new Dictionary<string, BudgetProjection>(); }
public ProjectionManager(IPEndPoint endpoint, UserCredentials credentials, IAdaptEvents adapter) { _adapter = adapter; _endpoint = endpoint; _credentials = credentials; _budgetLines = new Dictionary <string, BudgetLinesProjection>(); _budget = new Dictionary <string, BudgetProjection>(); }
public BudgetProjection(Budget budget, IPEndPoint endpoint, UserCredentials credentials, IAdaptEvents adapter, string stream) : base(endpoint, credentials, adapter, stream) { _budget = budget; _checkPoints = new Dictionary<string, CheckPoint>(); _lines = new List<BudgetLine>(); }
public EventStore(IPEndPoint endpoint, UserCredentials credentials, IAdaptEvents adapter) { _endpoint = endpoint; _credentials = credentials; _adapter = adapter; _con = EventStoreConnection.Create(endpoint); _con.Connect(); }
public BudgetsListProjection(IPEndPoint endpoint, UserCredentials credentials, IAdaptEvents adapter, string streamName) : base(endpoint, credentials, adapter, streamName) { }
public DistributionKeysProjection(IPEndPoint endpoint, UserCredentials credentials, IAdaptEvents adapter, string streamName) : base(endpoint, credentials, adapter, streamName) { }
public ApplicationUserProjection(IPEndPoint endpoint, UserCredentials credentials, IAdaptEvents adapter, string streamName) : base(endpoint, credentials, adapter, streamName) { _users = new Dictionary<string, ApplicationUser>(); }
public MyDiagProjection(IPEndPoint endpoint, UserCredentials credentials, IAdaptEvents adapter, string budgetId, string streamName) : base(endpoint, credentials, adapter, streamName) { _budgetId = budgetId; }
public GetEventStoreRepositoryAdapter(IEventStoreConnection eventStoreConnection, IPEndPoint eventStoreTcpEndpoint, IAdaptEvents adapter) { _eventStoreConnection = eventStoreConnection; _tcpEndpoint = eventStoreTcpEndpoint; _adapter = adapter; }
public BudgetProjection(Budget budget, IPEndPoint endpoint, UserCredentials credentials, IAdaptEvents adapter, string stream) : base(endpoint, credentials, adapter, stream) { _budget = budget; _checkPoints = new Dictionary <string, CheckPoint>(); _lines = new List <BudgetLine>(); }
public InMemoryProjection(IPEndPoint endpoint, UserCredentials credentials, IAdaptEvents adapter, string streamName) : this(endpoint, credentials, adapter) { _streamName = streamName; }
public BudgetLinesProjection(string budget, IPEndPoint endpoint, UserCredentials credentials, IAdaptEvents adapter, string stream) : base(endpoint, credentials, adapter, stream) { _budget = budget; }
public InMemoryProjection(IPEndPoint endpoint, UserCredentials credentials, IAdaptEvents adapter) { _endpoint = endpoint; _credentials = credentials; _adapter = adapter; }
public ApplicationUserProjection(IPEndPoint endpoint, UserCredentials credentials, IAdaptEvents adapter, string streamName) : base(endpoint, credentials, adapter, streamName) { _users = new Dictionary <string, ApplicationUser>(); }
public CategoriesProjection(IPEndPoint endpoint, UserCredentials credentials, IAdaptEvents adapter) : base(endpoint, credentials, adapter) { }