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; }
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; }
public RemoteCommand(IRemoteCommandService commandService, string id, string uiType, string uiData) : base(commandService, id, uiType) { UIData = uiData; this.CanExecuteChanged += RemoteCommand_CanExecuteChanged; }
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; }