Beispiel #1
0
 /// <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;
 }
Beispiel #2
0
 /// <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;
 }
Beispiel #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AnchorsController"/> class.
 /// </summary>
 /// <param name="anchorKeyCache">The anchor key cache.</param>
 public AnchorsController(IAnchorKeyCache anchorKeyCache)
 {
     this.anchorKeyCache = anchorKeyCache;
 }