public IActionResult Index()
 {
     return(View(repo.GetAllApplicationUsers()));
 }
示例#2
0
 public async Task <List <ApplicationUserPersonInfoDTO> > GetAllApplicationUsersPersonInfo()
 {
     return(ConvertListofApplicationUserToListofApplicationUserPersonInfoDTO(await ApplicationUserRepository.GetAllApplicationUsers()));
 }