Exemplo n.º 1
0
        public IActionResult MyPagesAsync()
        {
            var orders = mService.GetOrdersAsync();

            return(View(new MyPagesVM {
                Username = User.Identity.Name, Orders = orders
            }));
        }