/// <summary> /// Initializes a new instance of the ExperiencesController class. /// </summary> /// <param name="experienceKeyCache">The experience key cache.</param> public ExperiencesController(IExperienceKeyCache experienceKeyCache, IAnimationKeyCache animationKeyCache, IAnchorKeyCache anchorKeyCache, AnchorsController anchorsController, RoutesController routesController) { this.experienceKeyCache = experienceKeyCache; this._routesController = routesController; this.anchorKeyCache = anchorKeyCache; this._anchorsController = anchorsController; this.animationKeyCache = animationKeyCache; }
/// <summary> /// Initializes a new instance of the <see cref="AnchorsController"/> class. /// </summary> /// <param name="anchorKeyCache">The anchor key cache.</param> public AnchorsController(IAnchorKeyCache anchorKeyCache, RoutesController routesController) { this.anchorKeyCache = anchorKeyCache; this._routesController = routesController; }