コード例 #1
0
ファイル: CommandController.cs プロジェクト: smhinsey/Euclid
		public CommandController(IPublisher commandPublisher, IInputModelTransfomerRegistry transformer)
		{
			_commandPublisher = commandPublisher;
			_transformer = transformer;
		}
コード例 #2
0
ファイル: AgentsController.cs プロジェクト: smhinsey/Euclid
		public AgentsController(ICompositeApp composite, IPublisher commandPublisher, IInputModelTransfomerRegistry transformer)
		{
			_composite = composite;
			_commandPublisher = commandPublisher;
			_transformer = transformer;
		}