/// <summary> /// Initializes a new instance of the <see cref="InstallCommand"/> class. /// </summary> public InstallCommand( LocalUserConfig config, ISoupApi soupApi) { _config = config; _soupApi = soupApi; }
/// <summary> /// Initializes a new instance of the <see cref="PublishCommand"/> class. /// </summary> public PublishCommand( ISoupIdentity soupIdentity, ISoupApi soupApi) { _soupIdentity = soupIdentity; _soupApi = soupApi; }
/// <summary> /// Initializes a new instance of the <see cref="ViewCommand"/> class. /// </summary> public ViewCommand(ISoupApi soupApi) { _soupApi = soupApi; }