// GET: UserMasters public ActionResult Index() { return(View(userMasterService.GetAll().ToList())); }
public ActionResult <IEnumerable <UserDto> > GetAllUsers() { return(_userService.GetAll <IEnumerable <UserDto> >().ToList()); }