Exemple #1
0
        public IActionResult Index()
        {
            DemoIndexViewModel vm = new DemoIndexViewModel()
            {
                ScopedDate    = _scopedService.ToonDatum(),
                SingletonDate = _singletonService.ToonDatum(),
                TransientDate = _transientService.ToonDatum()
            };

            return(View(vm));
        }