コード例 #1
0
 public List <vw_KeyValue> GetAllJudges(int courtID)
 {
     return(UserComponent.GetUsersBasedOnType(courtID, SystemUserTypes.Judge).Select(user => new vw_KeyValue
     {
         ID = user.ID,
         Name = user.FullName
     }).ToList());
 }