public static Material GetMaterial(this Rule rule, string path, CustomizationService customizationService)
        {
            var materialPath = rule.GetMaterialKey(path);

            return(customizationService.GetMaterial(materialPath));
        }
        public static Material GetMaterial(this Rule rule, CustomizationService customizationService)
        {
            var path = rule.GetMaterialKey();

            return(customizationService.GetMaterial(path));
        }