Ejemplo n.º 1
0
 public BentoApiController(IEmbeddedContentService embeddedContentService)
 {
     _EmbeddedContentService = embeddedContentService ?? throw new ArgumentNullException(nameof(embeddedContentService));
 }
Ejemplo n.º 2
0
 public BentoApiController(IEmbeddedContentService embeddedContentService, IVariationContextAccessor variationContextAccessor)
 {
     _variationContextAccessor = variationContextAccessor;
     _EmbeddedContentService   = embeddedContentService ?? throw new ArgumentNullException(nameof(embeddedContentService));
 }