private bool IsDecorator(Type openGenericServiceType, Type implemenationType)
        {
            var ctor = this.SelectImplementationTypeConstructorOrNull(openGenericServiceType, implemenationType);

            return(ctor != null && Helpers.IsDecorator(openGenericServiceType, ctor));
        }