Ejemplo n.º 1
0
 public DataSet GetWholeCategoriesSet(int userId)
 {
     return(CategoryController.GetWholeCategoriesSet(userId));
 }
Ejemplo n.º 2
0
 public int GetCategoriesCount(int userId, int parentId)
 {
     return(CategoryController.GetCategoriesCount(userId, parentId));
 }
Ejemplo n.º 3
0
 public Category GetCategory(int userId, int categoryId)
 {
     return(CategoryController.GetCategory(userId, categoryId));
 }
Ejemplo n.º 4
0
 public List <Category> GetCategoriesPaged(int userId, int parentId, int maximumRows, int startRowIndex)
 {
     return(CategoryController.GetCategoriesPaged(userId, parentId, maximumRows, startRowIndex));
 }
Ejemplo n.º 5
0
 public int DeleteCategory(int userId, int categoryId)
 {
     return(CategoryController.DeleteCategory(userId, categoryId));
 }