Ejemplo n.º 1
0
		public ActionResult Commanders()
		{
			var db = new ZkDataContext();

			var ret = new CommandersModel();
			ret.Unlocks =
				GetUserUnlockCountsListIncludingFree(db).Where(
					x => x.Unlock.UnlockType != UnlockTypes.Unit).ToList();
			ret.Account = Global.Account;
			return View(ret);
		}
Ejemplo n.º 2
0
        public ActionResult Commanders()
        {
            var db = new ZkDataContext();

            var ret = new CommandersModel();

            ret.Unlocks =
                Global.Account.AccountUnlocks.Where(
                    x => x.Unlock.UnlockType != UnlockTypes.Unit).ToList
                    ();
            return(View(ret));
        }
		public ActionResult Commanders()
		{
			var db = new ZkDataContext();

			var ret = new CommandersModel();
			ret.Unlocks =
				Global.Account.AccountUnlocks.Where(
					x => x.Unlock.UnlockType != UnlockTypes.Unit).ToList
					();
			return View(ret);
		}
		public ActionResult Commanders()
		{
			var db = new ZkDataContext();

			var ret = new CommandersModel();
			ret.Unlocks =
				GetUserUnlockCountsListIncludingFree(db).Where(
					x => x.Unlock.UnlockType != UnlockTypes.Unit).ToList();
			ret.Account = Global.Account;
			return View(ret);
		}