Exemplo n.º 1
0
 public IActionResult Index()
 {
     if (string.IsNullOrEmpty(email))
     {
         return(GotoLoginPage());
     }
     else
     {
         ViewBag.Email  = email;
         ViewBag.UserId = _attendeeService.GetAttendeeIdByEmail(email);
         return(View(new MeetingViewModel()));
     }
 }