Example #1
0
        public ActionResult Mobile(bool demoUserLogin)
        {
            BaseModel model = new BaseModel();
            model.LoginAsDemoUser = demoUserLogin;

            return View(model);
        }
Example #2
0
        public ActionResult WelcomePage()
        {
            BaseModel model = new BaseModel();
            SetMobileFlag();

            model.IsMobile = IsMobile();

            //return RedirectToAction("Desktop", "BucketList");
            ////IBucketListData bld = new BucketListData(Utility.GetAppSetting(BucketListConstants.DB_CONN));
            //IList<string> parameters = new List<string>();
            //parameters.Add("Making Call");
            //CommonCode.Log(null, bld, "RequestController.WelcomePage()", parameters);

            //CommonCode.LogBrowser(GetBrowserData());

            return View(model);
        }