Exemplo n.º 1
0
        public async Task <IActionResult> Establishments()
        {
            var userId           = Guid.Parse(User.FindFirst(JwtClaimTypes.Subject).Value);
            var myEstablishments = await _establishmentService.GetAllForUser(userId);

            return(View(myEstablishments));
        }