Пример #1
0
 public PullCommand(
     IOnlineStoreService onlineStoreService,
     ILocalStoreService localStoreService,
     IFileService fileService,
     IUIService uiService,
     IConfigService configService,
     IHashService hashService)
     : base("pull", inputs: new[] { packageNameInput })
 {
     this.onlineStoreService = onlineStoreService;
     this.localStoreService  = localStoreService;
     this.fileService        = fileService;
     this.uiService          = uiService;
     this.configService      = configService;
     this.hashService        = hashService;
 }
Пример #2
0
 public TagCommand(
     IConfigService configService,
     IFileService fileService,
     IHashService hashService,
     IUIService uiService,
     IVersioningService versioningService,
     IOnlineStoreService onlineStoreService)
     : base("tag", inputs: new[] { tagNameInput })
 {
     this.configService      = configService;
     this.fileService        = fileService;
     this.hashService        = hashService;
     this.uiService          = uiService;
     this.versioningService  = versioningService;
     this.onlineStoreService = onlineStoreService;
 }
Пример #3
0
 public InitCommand(
     IVersioningService versioningService,
     IConfigService configService,
     IUIService uiService,
     IOnlineStoreService onlineStoreService,
     IFileService fileService,
     IHashService hashService)
     : base("init",
            modifiers: new[] { explicitIncludeModifier },
            arguments: new[] { ignoreList })
 {
     this.configService      = configService;
     this.uiService          = uiService;
     this.versioningService  = versioningService;
     this.onlineStoreService = onlineStoreService;
     this.fileService        = fileService;
     this.hashService        = hashService;
 }
Пример #4
0
 public RegisterController(IOnlineStoreService onlineStoreService)
 {
     _onlineStoreService = onlineStoreService;
 }
Пример #5
0
 public Admin(IOnlineStoreService onlineStoreService)
 {
     _onlineStoreService = onlineStoreService;
 }