Esempio n. 1
0
 public LocationTagsUpdaterService(
     ICollectionRepository collectionRepository,
     ILogger <OverseeService> logger,
     ISourceTagsProvider sourceTagsProvider,
     ICollectionFileRepository collectionFileRepository,
     IFileService fileService,
     IRemoteCommandService remoteCommandService)
 {
     _collectionRepository = collectionRepository;
     _logger                   = logger;
     _sourceTagsProvider       = sourceTagsProvider;
     _collectionFileRepository = collectionFileRepository;
     _fileService              = fileService;
     _remoteCommandService     = remoteCommandService;
 }
Esempio n. 2
0
 protected RemoteCommandBase(IRemoteCommandService commandService, string id, string uiType)
 {
     _commandService = commandService;
     ID     = id;
     UIType = uiType;
 }
 private bool passCanExcuteCall = false;// we pass the command binding call at the first time, happened when binding applied
 public CompositeRemoteCommand(IRemoteCommandService commandService, string id, string uiType)
     : base(commandService, id, uiType)
 {
 }
 public HomeController(IRemoteCommandService commandService, IMapper mapper, ILogger logger)
 {
     this.commandService = commandService ?? throw new ArgumentNullException(nameof(commandService));
     this.mapper         = mapper ?? throw new ArgumentNullException(nameof(mapper));
     this.logger         = logger ?? throw new ArgumentNullException(nameof(logger));
 }
 public RemoteCommandServiceController(IRemoteCommandService commandServiceSingleton)
 {
     _commandServiceSingleton = commandServiceSingleton;
 }
Esempio n. 6
0
 public RemoteCommand(IRemoteCommandService commandService, string id, string uiType, string uiData)
     : base(commandService, id, uiType)
 {
     UIData = uiData;
     this.CanExecuteChanged += RemoteCommand_CanExecuteChanged;
 }
Esempio n. 7
0
 public RemoteCommandDelegate(IRemoteCommandService commandService, string id, string uiType, IRemoteCommandServiceCallback callback)
     : base(commandService, id, uiType)
 {
     Callback = callback;
 }
 public MyClientCommand(IRemoteCommandService commandService, string id, string type, string uiData)
     : base(commandService, id, type, uiData)
 {
     UIData = uiData;
 }