public BoardTaskController(ICommandDispatcher commandDispatcher, IQueryDispatcher queryDispatcher,
     IHyperMediaFactory hyperMediaFactory)
 {
     this.commandDispatcher = commandDispatcher;
     this.queryDispatcher = queryDispatcher;
     this.hyperMediaFactory = hyperMediaFactory;
 }
Ejemplo n.º 2
0
 public BoardController(ICommandDispatcher commandDispatcher, IQueryDispatcher queryDispatcher,
                        IHyperMediaFactory hyperMediaFactory)
 {
     this.commandDispatcher = commandDispatcher;
     this.queryDispatcher   = queryDispatcher;
     this.hyperMediaFactory = hyperMediaFactory;
 }
 public BoardController(IHyperMediaFactory hyperMediaFactory,
                        IMediator mediator)
 {
     this.hyperMediaFactory = hyperMediaFactory;
     this.mediator          = mediator;
 }