コード例 #1
0
 public ProfileEditCommand(IGitProfileStore store)
 {
     Store = store;
 }
コード例 #2
0
 public ProfileShowCommand(IGitProfileStore store)
 {
     Store = store;
 }
コード例 #3
0
 public ProfileImportCommand(IGitProfileStore store, ICommandFileService fileService)
 {
     Store       = store;
     FileService = fileService;
 }
コード例 #4
0
 public DeactivateCommand(IGitConfigService command, IGitProfileStore store)
 {
     Service = command;
     Store   = store;
 }
コード例 #5
0
 public ProfileCreateCommand(IGitProfileStore store, ICommandFileService fileService)
 {
     Store       = store;
     FileService = fileService;
 }
コード例 #6
0
 public ProfileDeleteCommand(IGitProfileStore store)
 {
     Store = store;
 }