public TrackedUseCaseFiltrator(ITracer tracer, IEntityTypeMappingRegistry <TSubDomain> entityTypeRegistry, IEntityTypeExplicitMapping entityTypeExplicitMapping, IOperationRegistry <TSubDomain> operationsRegistry)
 {
     _tracer                    = tracer;
     _entityTypeRegistry        = entityTypeRegistry;
     _entityTypeExplicitMapping = entityTypeExplicitMapping;
     _operationsRegistry        = operationsRegistry;
 }
Exemplo n.º 2
0
        public KnockoutMapper(IOperationRegistry operationRegistry, IMonitorCollection monitorCollection)
        {
            _operationRegistry = operationRegistry;
            _monitorCollection = monitorCollection;

            _operationRegistry.RegisterCommand("subscribeToViewModel", new Func <string, List <ChangeEntry> >(Subscribe));
        }
        public CherryCommanderService()
        {
            operationRegistry = new OperationRegistry();

            operationRegistry.RegisterCommand("GetFiles", new Func<string, List<FileIdentifier>>(GetFiles));

            webServer = new WebServer(operationRegistry) { Port = 8181 };
            webServer.RegisterAssembly(GetType().Assembly, "", "CherryCommander.Core.Ui");
        }
        public CherryCommanderService()
        {
            operationRegistry = new OperationRegistry();

            operationRegistry.RegisterCommand("GetFiles", new Func <string, List <FileIdentifier> >(GetFiles));

            webServer = new WebServer(operationRegistry)
            {
                Port = 8181
            };
            webServer.RegisterAssembly(GetType().Assembly, "", "CherryCommander.Core.Ui");
        }
Exemplo n.º 5
0
 public RequestHandler(IOperationRegistry operationRegistry)
 {
     _operationRegistry = operationRegistry;
 }
Exemplo n.º 6
0
 public Operation(IOperationRegistry operationRegistry)
     : base(operationRegistry)
 {
 }
Exemplo n.º 7
0
 public InteractiveTesterCalc(IOperationRegistry registry, string[] args) : base(registry)
 {
     this.args = args;
 }
 public BreadcrumbLocationTrackerOperations(IOperationRegistry operationRegistry)
 {
     _operationRegistry = operationRegistry;
 }
 public CustomDetailsOperations(IOperationRegistry operationRegistry)
     : base(operationRegistry)
 {
 }
Exemplo n.º 10
0
 public FileCalc(string filePath, IOperationRegistry registry) : base(registry)
 {
     this.filePath = filePath;
 }
Exemplo n.º 11
0
 public InteractiveCalc(IOperationRegistry registry) : base(registry)
 {
 }
Exemplo n.º 12
0
 public RequestHandler(IOperationRegistry operationRegistry)
 {
     _operationRegistry = operationRegistry;
 }
Exemplo n.º 13
0
 public ServiceOperation(IOperationRegistry operationRegistry)
     : base(operationRegistry)
 {
 }
Exemplo n.º 14
0
 protected AbstractCalc(IOperationRegistry operationRegistry)
 {
     this.operationRegistry = operationRegistry;
 }
Exemplo n.º 15
0
 public BasemapOperations(IOperationRegistry operationRegistry)
 {
     _operationRegistry = operationRegistry;
 }