Advertisement
Guest User

Untitled

a guest
Oct 1st, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. // GET: api/UserProfiles/all
  2. [HttpGet]
  3. [ActionName("All")]
  4. public List<UserProfile> GetUserProfiles()
  5. {
  6. var data = db.UserProfiles.ToList();
  7. return data;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement