public ActionResult AbilityList()
 {
     ViewBag.LevelList = _abilityLevelManager.GetSearchAbilityLevelList(CurrentTenant.TenantId).OrderBy(p => p).ToList();
     return(View());
 }
示例#2
0
 public ActionResult List()
 {
     ViewBag.categorys = _categoryManager.GetAbilityCategoryList(CurrentTenant.TenantId, "");
     ViewBag.levels    = _levelManager.GetSearchAbilityLevelList(CurrentTenant.TenantId);
     return(View());
 }