public CreateNodeCommand(
     IHelloHomeDbContext ctx,
     ITimeProvider timeProvider)
 {
     _timeProvider = timeProvider;
     _ctx          = ctx;
 }
        public CreateNodeCommand(
			IHelloHomeDbContext ctx, 
			IRfIdGenerationStrategy rfIdGenerationStrategy, 
			IListRfIdsQuery listRfIdsQuery,
			ITimeProvider timeProvider)
        {
            this._timeProvider = timeProvider;
            _ctx = ctx;
            _rfIdGenerationStrategy = rfIdGenerationStrategy;
            _listRfIdsQuery = listRfIdsQuery;
        }
示例#3
0
 public NodeStartedHandler(
     IHelloHomeDbContext dbCtx,
     IFindNodeQuery findNodeQuery,
     ICreateNodeCommand createNodeCommand,
     ITouchNode touchNode,
     IRfIdGenerationStrategy rfIdGenerationStrategy,
     ITimeProvider timeProvider)
     : base(dbCtx)
 {
     _timeProvider           = timeProvider;
     _findNodeQuery          = findNodeQuery;
     _createNodeCommand      = createNodeCommand;
     _touchNode              = touchNode;
     _rfIdGenerationStrategy = rfIdGenerationStrategy;
 }
 public ListRfIdsQuery(IHelloHomeDbContext ctx)
 {
     _ctx = ctx;
 }
示例#5
0
 public FindNodeQuery(IHelloHomeDbContext ctx)
 {
     _ctx = ctx;
 }
示例#6
0
 public NodeInfoHandler(IHelloHomeDbContext dbCtx, IFindNodeQuery findNodeQuery, ITouchNode touchNode) : base(dbCtx)
 {
     _findNodeQuery = findNodeQuery;
     _touchNode     = touchNode;
 }
示例#7
0
 public CommentHandler(IHelloHomeDbContext dbCtx) : base(dbCtx)
 {
 }
 public FindNodeQuery(IHelloHomeDbContext ctx)
 {
     _ctx = ctx;
 }
示例#9
0
 protected MessageHandler(IHelloHomeDbContext dbCtx)
 {
     _dbCtx = dbCtx;
 }
 public PulseHandler(IHelloHomeDbContext dbCtx, IFindNodeQuery findNodeQuery, ITouchNode touchNode) : base(dbCtx)
 {
     _touchNode     = touchNode;
     _findNodeQuery = findNodeQuery;
 }
示例#11
0
 public FindTriggersForPortQuery(IHelloHomeDbContext ctx)
 {
     _ctx = ctx;
 }