This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using EPiServer.Shell.ContentQuery; | |
| using System.Collections.Generic; | |
| using System.Web; | |
| using EPiServer; | |
| using EPiServer.Approvals; | |
| using EPiServer.Core; | |
| using EPiServer.ServiceLocation; | |
| using EPiServer.Shell.Rest; | |
| using EPiServer.Shell.Services.Rest; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Mediachase.Commerce; | |
| namespace EPiServer.Reference.Commerce.Site.Features.MarketSecurity | |
| { | |
| public interface IMarketAccessRightsHelper | |
| { | |
| bool IsFilteredMarketsRequest(); | |
| bool UserHasAccessToMarket(IMarket market); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using EPiServer.ServiceLocation; | |
| using EPiServer.Framework.Initialization; | |
| using EPiServer.Find.Framework.BestBets; | |
| using EPiServer.Framework; | |
| namespace BestBetExtension.Business.CustomPhraseCriterion | |
| { | |
| [InitializableModule] | |
| [ModuleDependency(typeof(ServiceContainerInitialization))] | |
| [ModuleDependency(typeof(EPiServer.Find.Framework.FrameworkInitializationModule))] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using EPiServer.Find.Framework.BestBets; | |
| using EPiServer.Globalization; | |
| using System; | |
| using System.Globalization; | |
| using System.Linq; | |
| namespace BestBetExtension.Business.CustomPhraseCriterion | |
| { | |
| public class LocaleAwarePhraseCriterion : DefaultPhraseCriterion, IPhraseCriterion | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Net; | |
| using System.Runtime.Serialization; | |
| using System.Text; | |
| using EPiServer; | |
| using EPiServer.Core; | |
| using EPiServer.Forms.Core; | |
| using EPiServer.Forms.Core.Events; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using EPiServer.Framework; | |
| using EPiServer.Framework.Initialization; | |
| using EPiServer.ServiceLocation; | |
| using EPiServer.Core; | |
| using EPiServer.Security; | |
| using EPiServer.Approvals; | |
| using EPiServer.Approvals.ContentApprovals; | |
| using Microsoft.AspNet.Identity; | |
| using Microsoft.AspNet.Identity.EntityFramework; | |
| using EPiServer.Cms.UI.AspNetIdentity; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using EPiServer.Approvals; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Threading.Tasks; | |
| using EPiServer.Framework; | |
| using EPiServer.ServiceLocation; | |
| using EPiServer.Framework.Initialization; | |
| using EPiServer.Security; | |
| namespace ApprovalSequences |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using Campaign.CouponServices.Interfaces; | |
| using EPiServer.Commerce.Marketing; | |
| using EPiServer.Reference.Commerce.Site.Features.CampaignCoupons.Discount; | |
| using EPiServer.Security; | |
| using Mediachase.Commerce.Security; | |
| namespace EPiServer.Reference.Commerce.Site.Features.CampaignCoupons.CouponFilter |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.ComponentModel.DataAnnotations; | |
| using EPiServer.Core; | |
| using EPiServer.PlugIn; | |
| namespace TokenisedContent.Features.TokenisedContent | |
| { | |
| [PropertyDefinitionTypePlugIn] | |
| public class ReplacementTokenProperty : PropertyList<ReplacementToken> { } | |
| public class ReplacementToken |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Web; | |
| using EPiServer.Core; | |
| using EPiServer.Tracking.Core; | |
| namespace AlloyDemoKit.Business.Insight | |
| { | |
| public class TrackingExample | |
| { | |
| private readonly ITrackingService _trackingService; | |
| private readonly HttpContextBase _httpContextBase; |