Exemplo n.º 1
0
 public static DataSet GetPermissionsByCategory(int categoryID)
 {
     PermissionCategory category = new PermissionCategory();
     return category.GetPermissionsInCategory(categoryID);
 }
Exemplo n.º 2
0
 public static DataSet GetAllCategories()
 {
     PermissionCategory category = new PermissionCategory();
     return category.GetCategoryList();
 }