protected override void ConfigureInternal(object target, PropertyInfo property, ConfiguratorPropertyAttribute configuratorPropertyAttr)
        {
            var typeNamingModel = new TypeNamingModel();

            foreach (var setupAction in SetupActions)
            {
                if (TryReadEntry(setupAction.Key, out var entry))
                {
                    setupAction.Value(typeNamingModel, entry);
                }
            }

            property.SetValue(target, typeNamingModel);
        }
 public DotNetTypeHelper(TypeNamingModel typeNamingModel)
     : base(typeNamingModel)
 {
 }