コード例 #1
0
        private NFLPlayerStats_ReceivingService CreateReceivingService()
        {
            var userId  = Guid.Parse(User.Identity.GetUserId());
            var service = new NFLPlayerStats_ReceivingService(userId);

            return(service);
        }
コード例 #2
0
        // GET: NFLPlayerStatsReceiving
        public ActionResult Index()
        {
            var userId  = Guid.Parse(User.Identity.GetUserId());
            var service = new NFLPlayerStats_ReceivingService(userId);
            var model   = service.GetReceivingStats();

            return(View(model));
        }