Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LocatorIdentifierController"/> class.
 /// </summary>
 /// <param name="loggerService">The logger service.</param>
 /// <param name="locatorIdentifierService">The locator identifier service.</param>
 public LocatorIdentifierController(ILoggerService loggerService, ILocatorIdentifierService locatorIdentifierService)
     : base(loggerService)
 {
     this.locatorIdentifierService = locatorIdentifierService;
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PagesController" /> class.
 /// </summary>
 /// <param name="loggerService">The logger service.</param>
 /// <param name="pagesService">The pages service.</param>
 /// <param name="locatorIdentifierService">The locator identifier service.</param>
 public PagesController(ILoggerService loggerService, IPagesService pagesService, ILocatorIdentifierService locatorIdentifierService)
     : base(loggerService)
 {
     this.pagesService             = pagesService;
     this.locatorIdentifierService = locatorIdentifierService;
 }