コード例 #1
0
ファイル: NewRequestController.cs プロジェクト: tah182/Comet
 public ContentResult Employees(string input, bool? activeOnly)
 {
     bool active = activeOnly == null ? false : (bool)activeOnly;
     LookupMgr lookupMgr = new LookupMgr(ConsoleFactory.getRequestSvc());
     return Jsonify<IList<IUser>>.Serialize(lookupMgr.getEmployees(input, active));
 }