コード例 #1
0
ファイル: WizardFlyer.cs プロジェクト: kokosda/Flyers
        public static WizardFlyer SetFlyer(FlyerTypes flyerType)
        {
            var result = new WizardFlyer(flyerType);

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

            return(result);
        }
コード例 #2
0
ファイル: WizardFlyer.cs プロジェクト: kokosda/Flyers
 private WizardFlyer(FlyerTypes flyerType)
 {
     FlyerType = flyerType;
     Photos    = new String[10];
 }