private ADRoleLookupLookupListsCacheObject GetADRoleLookupAndLookups()
        {
            UcbServiceClient sc           = new UcbServiceClient();
            ADRoleLookupVMDC returnObject = sc.GetADRoleLookup(HttpContext.Current.User.Identity.Name, HttpContext.Current.User.Identity.Name, "FrameworkAdmin", "", null);

            ADRoleLookupLookupListsCacheObject CachedLists = new ADRoleLookupLookupListsCacheObject();

            CachedLists.RoleList = Mapper.Map <IEnumerable <RoleDC>, List <RoleModel> >(returnObject.RoleList);
            return(CachedLists);
        }