Interface ICategoryService
Manage inventory categories. Also see web page for managing inventory categories.
Namespace: DirectScale.Disco.Extension.Services
Assembly: DirectScale.Disco.Extension.Abstractions.dll
Syntax
public interface ICategoryService
Methods
GetCategories(Int32, Int32, String)
Get available categories for productLine
in storeId
.
Declaration
Task<Category[]> GetCategories(int productLine, int storeId, string search = null)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | productLine | The product line to find categories for. |
System.Int32 | storeId | The store to find categories for. |
System.String | search | String to try and match a specific category Name |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<Category[]> | Categories found. |