Ejemplo n.º 1
0
 /// <summary>保存店铺页面背景设置
 /// </summary>
 /// <param name="storeId"></param>
 public void SaveStorePageBackGround(Int64 storeId)
 {
     using (WcfTcpClient <IStoreService> clint = factory.CreateClient <IStoreService>())
     {
         var    item = clint.Channel.GetStoreBackGround(storeId, VersionEnum.Published);
         string key  = RedisKeyConst.GetStorePageBGKey(storeId).Key;
         CN100.Redis.Client.RedisClientUtility.SetData <StoreBackGroundModel>(key, item);
     }
 }