/// <summary> /// Initializes a new instance of the <see cref="ContentServiceEventsComponent"/> class. /// </summary> /// <param name="entityParsingService"> /// The entity parsing service. /// </param> public ContentServiceEventsComponent(IEntityParsingService entityParsingService) { this.entityParsingService = entityParsingService; }
/// <summary> /// Initializes a new instance of the <see cref="RebuildApiController"/> class. /// </summary> /// <param name="entityParsingService"> /// The entity parsing service. /// </param> /// <param name="contentService"> /// The content Service. /// </param> /// <param name="logger"> /// The logger. /// </param> public RebuildApiController(IEntityParsingService entityParsingService, IContentService contentService, ILogger logger) { this.entityParsingService = entityParsingService; this.contentService = contentService; this.logger = logger; }