示例#1
0
        public static WizardFlyer SetFlyer(FlyerTypes flyerType)
        {
            var result = new WizardFlyer(flyerType);

            HttpContext.Current.Session[GetKey()] = result;

            return(result);
        }
示例#2
0
 private WizardFlyer(FlyerTypes flyerType)
 {
     FlyerType = flyerType;
     Photos    = new String[10];
 }