public Engine(CommandDispatcher commandDispatcher) { this.commandDispatcher = commandDispatcher; session = new Session(); }
public Engine(CommandDispatcher commandDispatcher) { this.commandDispatcher = commandDispatcher; }
public Engine(CommandDispatcher commandDispatcher, PhotoShareContext context) { this.commandDispatcher = commandDispatcher; this.context = context; }
public Engine() { this.commandDispatcher = new CommandDispatcher(); }
public Engine(IReader reader, IWriter writer, CommandDispatcher commandDispatcher) { this.reader = reader; this.writer = writer; this.commandDispatcher = commandDispatcher; }
public Engine(CommandDispatcher commandDispatcher, ServiceProvider serviceProvider) { this.commandDispatcher = commandDispatcher; this.serviceProvider = serviceProvider; }
public Engine(IServiceProvider serviceProvider) { this.serviceProvider = serviceProvider; this.commandDispatcher = (CommandDispatcher)this.serviceProvider.GetService(typeof(ICommandDispatcher)); }