/// <summary>
 /// Initializes a new instance of the <see cref="GetResourceByIdOperation"/> class.
 /// </summary>
 /// <param name="configuration">Operation configuration.</param>
 public GetResourceByIdOperation(ServiceOperationElement configuration, SosEntitiesFactory entitiesFactory, IHttpContextAccessor accessor, IMemoryCache cache, IServiceProvider serviceProvider)
     : base(configuration, entitiesFactory, accessor, cache, serviceProvider)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="BaseSosOperation"/> class.
 /// </summary>
 /// <param name="configuration">Operation configuration.</param>
 protected BaseSosOperation(ServiceOperationElement configuration, SosEntitiesFactory entitiesFactory, IHttpContextAccessor accessor, IMemoryCache cache, IServiceProvider serviceProvider)
     : base(configuration, accessor, cache, serviceProvider)
 {
     this.entitiesFactory = entitiesFactory;
 }