Create Stock Location
Abstract
Developer tasks for using service method CreateStockLocation
.
CreateStockLocation
is used to create an inventory catalog.
At your Visual Studio Solution setup:
Reference the Sitecore.Commerce.Connect.CommerceServer and Sitecore.Commerce.dll.
Pick the class in your solution where want to use this service method.
Paste in the code below to use the service method.
var provider = new CommerceInventoryServiceProvider(); var entity = new CommerceStockLocation { InventoryCatalogName = "location name" }; var request = new CreateStockLocationRequest(entity); var result = provider.CreateStockLocation(request);