コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="InstallCommand"/> class.
 /// </summary>
 public InstallCommand(
     LocalUserConfig config,
     ISoupApi soupApi)
 {
     _config  = config;
     _soupApi = soupApi;
 }
コード例 #2
0
ファイル: PublishCommand.cs プロジェクト: Tembocs/Soup
 /// <summary>
 /// Initializes a new instance of the <see cref="PublishCommand"/> class.
 /// </summary>
 public PublishCommand(
     ISoupIdentity soupIdentity,
     ISoupApi soupApi)
 {
     _soupIdentity = soupIdentity;
     _soupApi      = soupApi;
 }
コード例 #3
0
ファイル: ViewCommand.cs プロジェクト: Tembocs/Soup
 /// <summary>
 /// Initializes a new instance of the <see cref="ViewCommand"/> class.
 /// </summary>
 public ViewCommand(ISoupApi soupApi)
 {
     _soupApi = soupApi;
 }