Exemple #1
0
 public BaseDAL(PassThroughContext passedPluginContext)
 {
     this.dataContext = passedPluginContext.ToDataAccessContext();
 }
Exemple #2
0
 public BaseBL(PassThroughContext passedPluginContext)
 {
     this.pluginContext = passedPluginContext;
 }
 public AccountDAL(PassThroughContext passThroughContext) : base(passThroughContext)
 {
 }
        public PassThroughContext ToPassthroughContext()
        {
            var passThroughContext = new PassThroughContext(OrganizationService, TracingService);

            return(passThroughContext);
        }
Exemple #5
0
 public AccountBL(PassThroughContext pluginContext) : base(pluginContext)
 {
 }