Exemple #1
0
 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));
 }