public ReflectionManager(IApplicationMetadataProvider applicationMetadataProvider, INamingConventionManager namingConventionManager, IReflectedLibraryManager reflectedLibraryManager, ICustomAttributeProviderManager customAttributeProviderManager)
 {
     _applicationMetadataProvider    = applicationMetadataProvider;
     _namingConventionManager        = namingConventionManager;
     _reflectedLibraryManager        = reflectedLibraryManager;
     _customAttributeProviderManager = customAttributeProviderManager;
 }
Exemple #2
0
        public DynamicEntityMetadata(IDynamicOperationManager dynamicOperationManager, IDynamicMethodManager dynamicMethodManager, IPropertyFilterManager propertyFilterManager, INamingConventionManager namingConventionManager)
        {
            DynamicPropertyMetadatas = new HashSet <DynamicPropertyMetadata>();

            _dynamicOperationManager = dynamicOperationManager;
            _dynamicMethodManager    = dynamicMethodManager;
            _propertyFilterManager   = propertyFilterManager;
            _namingConventionManager = namingConventionManager;
        }
 public DynamicForiegnKeyPropertyMetadataFixup(INamingConventionManager namingConventionManager)
 {
     _namingConventionManager = namingConventionManager;
 }
 public FixUpApplicationControllerMetadata(INamingConventionManager namingConventionManager)
 {
     _namingConventionManager = namingConventionManager;
 }
 public NavigationPropertyManager(INamingConventionManager namingConventionManager)
 {
     _namingConventionManager = namingConventionManager;
 }
Exemple #6
0
 public ApplicationControllerMetadataBuilder(IApplicationMetadataProvider applicationMetadataProvider, IApplicationControllerMethodMetadataBuilder applicationControllerMethodMetadataBuilder, INamingConventionManager namingConventionManager)
 {
     _applicationMetadataProvider = applicationMetadataProvider;
     _applicationControllerMethodMetadataBuilder = applicationControllerMethodMetadataBuilder;
     _namingConventionManager = namingConventionManager;
 }