Exemple #1
0
        public static void SetupConfiguration()
        {
            ConfigurationHandler.ConfigFilePath = "Resources/RaspConfiguration.Live.xml";
            ConfigurationHandler.Reset();

            DefaultDocumentTypes documentTypes = new DefaultDocumentTypes();

            documentTypes.CleanAdd();

            DefaultProfileMappingConfig profileMappings = new DefaultProfileMappingConfig();

            profileMappings.AddAll();
        }
Exemple #2
0
        public static void SetupConfiguration(string configurationFilePath)
        {
            ConfigurationHandler.ConfigFilePath = configurationFilePath;
            ConfigurationHandler.Reset();

            DefaultDocumentTypes documentTypes = new DefaultDocumentTypes();

            documentTypes.CleanAdd();

            DefaultProfileMappingConfig profileMappings = new DefaultProfileMappingConfig();

            profileMappings.AddAll();
        }
Exemple #3
0
        private void SetupProfileMappings()
        {
            DefaultProfileMappingConfig profileMappings = new DefaultProfileMappingConfig();

            profileMappings.AddAll();
        }