예제 #1
0
 public IActionResult Index(int customerId)
 {
     ViewBag.CustomerId = customerId;
     return(View("~/Views/Admin/UserInfoPage/Index.cshtml", _userDbService.GetUsersByCustomerId(customerId)));
 }