Guest User

Untitled

a guest
Dec 17th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. using System.Collections.Generic;
  2. using Microsoft.Extensions.Logging;
  3. using Sitecore.Commerce.Core;
  4. using Sitecore.Framework.Pipelines;
  5. using Sitecore.Services.Examples.Catalog.Pipelines.Arguments;
  6.  
  7. namespace Sitecore.Services.Examples.Catalog.Pipelines
  8. {
  9. public class CreateUpdateSellableItemPipeline : CommercePipeline<List<CreateUpdateSellableItemArgument>, bool>, ICreateUpdateSellableItemPipeline
  10. {
  11. public CreateUpdateSellableItemPipeline(IPipelineConfiguration<ICreateUpdateSellableItemPipeline> configuration, ILoggerFactory loggerFactory)
  12. : base(configuration, loggerFactory)
  13. {
  14. }
  15. }
  16. }
Add Comment
Please, Sign In to add comment