Example #1
0
 public JsonResult GetMyUsersFinished(int year)
 {
     return(Json(UserSmallInfo.GetMyUsers(User.Identity.GetUserId(), false, year)));
 }
Example #2
0
 public JsonResult GetAllUsers(string query, int year)
 {
     return(Json(UserSmallInfo.GetAllUsers(query, year)));
 }
Example #3
0
 public JsonResult GetMyUsersActive(int year)
 {
     return(Json(UserSmallInfo.GetMyUsers(User.Identity.GetUserId(), true, year)));
 }