Skip to content

Instantly share code, notes, and snippets.

@websterian
Created December 17, 2018 18:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save websterian/82f4a8cb71dd68d962df058740d7276f to your computer and use it in GitHub Desktop.
Save websterian/82f4a8cb71dd68d962df058740d7276f to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
using Microsoft.Extensions.Logging;
using Sitecore.Commerce.Core;
using Sitecore.Framework.Pipelines;
using Sitecore.Services.Examples.Catalog.Pipelines.Arguments;
namespace Sitecore.Services.Examples.Catalog.Pipelines
{
public class CreateUpdateSellableItemPipeline : CommercePipeline<List<CreateUpdateSellableItemArgument>, bool>, ICreateUpdateSellableItemPipeline
{
public CreateUpdateSellableItemPipeline(IPipelineConfiguration<ICreateUpdateSellableItemPipeline> configuration, ILoggerFactory loggerFactory)
: base(configuration, loggerFactory)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment