private void ConfigureOperationControllers(ServiceEnvironment serviceEnvironment) { this.systemConnectionController = new SystemConnectionController(serviceEnvironment); this.systemUserController = new SystemUserController(serviceEnvironment); this.systemNoteController = new SystemNoteController(serviceEnvironment); }
private void ConfigureServiceSettings() { this.serviceEnvironment = new ServiceEnvironment(); this.serviceEnvironment.HubName = "ServerHub"; this.serviceEnvironment.ConnectionTimeout = new TimeSpan(0, 1, 0); }