예제 #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
 /// <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;
 }