Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
namespace Sitecore.Services.Examples.Indexing
{
using Sitecore.Commerce.Core;
using Sitecore.Framework.Conditions;
public class GenerateFacetsArgument : PipelineArgument
{
public GenerateFacetsArgument(string catalogId)
{
Condition.Requires(catalogId).IsNotNull("The parameter can not be null");
this.CatalogId = catalogId;
}
public string CatalogId { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment