Пример #1
0
        public void Map(BarcodeFormat format1, T format2)
        {
            if (MappenFormats is null) MappenFormats = new Dictionary<BarcodeFormat, T>();

            if (MappenFormats.ContainsKey(format1)) throw new Exception($"{format1} is already mapped to {MappenFormats[format1]} and can not be mapped to {format2}.");
            if (MappenFormats.ContainsValue(format2)) throw new Exception($"{format2} is already mapped to {Resolve(format2)} and can not be mapped to {format1}.");

            MappenFormats.Add(format1, format2);
        }
Пример #2
0
 public BarcodeFormat Resolve(T format)
 {
     try
     {
         return MappenFormats.Single(x => x.Value.Equals(format)).Key;
     }
     catch (Exception)
     {
         try
         {
             return MappenFormats.Single(x => x.Value.Equals(DefaultFormat)).Key;
         }
         catch (Exception)
         {
             return BarcodeFormat.CODE_128;
         }
     }
 }