| 123456789101112131415161718192021222324252627 | 
							- using System;
 
- using System.Collections.Generic;
 
- using System.Configuration;
 
- using System.Linq;
 
- using System.Text;
 
- using System.Threading.Tasks;
 
- namespace VirgoSimulator.Instances
 
- {
 
-     public enum JetChamber
 
-     {
 
-         VirgoMask = 0,
 
-         VirgoR = 1,
 
-     }
 
-     public class AppSettingHelper
 
-     {
 
-         public static bool IsVirgoMask()
 
-         {
 
-             return Convert.ToInt32(ConfigurationManager.AppSettings["ChamberType"]) == (int)JetChamber.VirgoMask;
 
-         }
 
-         public static bool IsVirgoR()
 
-         {
 
-             return Convert.ToInt32(ConfigurationManager.AppSettings["ChamberType"]) == (int)JetChamber.VirgoR;
 
-         }
 
-     }
 
- }
 
 
  |