Esempio n. 1
0
        public ActionResult Av(int avId)
        {
            var av    = JavDataBaseManager.GetAV(avId);
            var match = ScanDataBaseManager.GetMatchScanResult(avId);

            if (av == null)
            {
                av = new AV();
            }

            if (match == null)
            {
                match = new ScanResult();
            }

            ViewData.Add("av", av);
            ViewData.Add("match", match);

            return(View());
        }