Пример #1
0
 public static ProductColorTable[] GetAllColorTables()
 {
     if (ColotTables == null || ColotTables.Length == 0)
     {
         ProductColorTableParser parser = new ProductColorTableParser();
         ColotTables = parser.Load();
     }
     if (ColotTables == null || ColotTables.Length == 0)
     {
         return(null);
     }
     return(ColotTables);
 }
Пример #2
0
        public static void ReLoadAllColorTables()
        {
            ProductColorTableParser parser = new ProductColorTableParser();

            ColotTables = parser.Load();
        }