Ejemplo n.º 1
0
            /// <summary>
            /// We work with the cache on the server side of the DataPortal
            /// </summary>
            protected override void DataPortal_Execute()
            {
                var key = "__ML_ParentUrlPageList_" + this.TenantId + "__";

                this.ParentUrlPageList = appContext.GetOrAdd(key,
                                                             () => ParentUrlPageList.GetParentUrlPageList(this.TenantId));
            }
Ejemplo n.º 2
0
 public ParentUrlPageList GetParentUrlPageList(int tenantId)
 {
     return(ParentUrlPageList.GetRequestCachedParentUrlPageList(tenantId));
 }
Ejemplo n.º 3
0
 public ParentUrlPageList EmptyParentUrlPageList()
 {
     return(ParentUrlPageList.EmptyParentUrlPageList());
 }