async public Task <CategoryInfo> AddCategoryAsync(CategoryInfo item) { item.Parent_id = this.Id; return(await BLL.Category.InsertAsync(item)); }
public CategoryInfo AddCategory(CategoryInfo item) { item.Parent_id = this.Id; return(BLL.Category.Insert(item)); }