コード例 #1
0
ファイル: CommandService.cs プロジェクト: draptik/RepoSync
 public CommandService(ICommandOutputStrategy outputStrategy)
 {
     this.ioService      = new IoService();
     this.outputStrategy = outputStrategy;
 }
コード例 #2
0
ファイル: JsonService.cs プロジェクト: draptik/RepoSync
 public JsonService(IoService ioService)
 {
     this.ioService = ioService;
     this.config    = new SyncConfig();
 }
コード例 #3
0
ファイル: CommandService.cs プロジェクト: draptik/RepoSync
		public CommandService (ICommandOutputStrategy outputStrategy)
		{
			this.ioService = new IoService();	
			this.outputStrategy = outputStrategy;
		}
コード例 #4
0
ファイル: JsonService.cs プロジェクト: draptik/RepoSync
		public JsonService (IoService ioService)
		{
			this.ioService = ioService;
			this.config = new SyncConfig();
		}