Пример #1
0
 public LifeTutorialController(
     ITutorialsCollectionModel collectionModel,
     IFeatureToggleCollectionModel featureToggleCollectionModel)
 {
     _featureToggleCollectionModel = featureToggleCollectionModel;
     _model         = collectionModel[Id];
     _previousModel = collectionModel[PreviousId];
 }
Пример #2
0
        public ControlsTutorialController(
            ITutorialsCollectionModel collectionModel,
            IAvatarLocator avatarLocator,
            IFeatureToggleCollectionModel featureToggleCollectionModel)
        {
            _avatarLocator = avatarLocator;
            _featureToggleCollectionModel = featureToggleCollectionModel;

            _model = collectionModel[Id];
        }
 public NovatarsTutorialController(
     ITutorialsCollectionModel collectionModel,
     IFeatureToggleCollectionModel featureToggleCollectionModel,
     IDebugNovatarSpawner spawningOrchestrator)
 {
     _featureToggleCollectionModel = featureToggleCollectionModel;
     _spawningOrchestrator         = spawningOrchestrator;
     _model         = collectionModel[Id];
     _previousModel = collectionModel[PreviousId];
 }