예제 #1
0
        private void RepopulateListsFromCacheSession(RelationshipToCustomerVM model)
        {
            // Populate cached lists if they are empty. Will invoke service call
            RelationshipToCustomerLookupListsCacheObject CachedLists = cacheManager.RelationshipToCustomerListCache;

            // Retrieve any cached lists to model
        }
예제 #2
0
        private RelationshipToCustomerLookupListsCacheObject GetRelationshipToCustomerAndLookups()
        {
            UcbServiceClient           sc           = new UcbServiceClient();
            RelationshipToCustomerVMDC returnObject = sc.GetRelationshipToCustomer(HttpContext.Current.User.Identity.Name, HttpContext.Current.User.Identity.Name, "FrameworkAdmin", "", null);

            RelationshipToCustomerLookupListsCacheObject CachedLists = new RelationshipToCustomerLookupListsCacheObject();

            return(CachedLists);
        }