예제 #1
0
 private static void RemoveCache(Order_addressInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Order_address_", item.Order_id));
 }
예제 #2
0
 private static void RemoveCache(RentsubletInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Rentsublet_", item.Id));
 }
예제 #3
0
 private static void RemoveCache(Member_addressbookInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Member_addressbook_", item.Id));
 }
예제 #4
0
 private static void RemoveCache(Member_securityInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Member_security_", item.Member_id));
 }
예제 #5
0
 private static void RemoveCache(ShopstatInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Shopstat_", item.Shop_id));
 }
예제 #6
0
 private static void RemoveCache(ExpressdescInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Expressdesc_", item.Express_id));
 }
예제 #7
0
 private static void RemoveCache(Markettype_categoryInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Markettype_category_", item.Category_id, "_,_", item.Markettype_id));
 }
예제 #8
0
 private static void RemoveCache(NewstagInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Newstag_", item.Id));
 }
예제 #9
0
 private static void RemoveCache(ProductitemInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Productitem_", item.Id));
 }
예제 #10
0
 private static void RemoveCache(FactorydescInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Factorydesc_", item.Factory_id));
 }
예제 #11
0
 private static void RemoveCache(MarketdescInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Marketdesc_", item.Market_id));
 }
예제 #12
0
 private static void RemoveCache(Product_attrInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Product_attr_", item.Pattr_id, "_,_", item.Product_id));
 }
예제 #13
0
 private static void RemoveCache(Shop_franchisingInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Shop_franchising_", item.Franchising_id, "_,_", item.Shop_id));
 }
예제 #14
0
 private static void RemoveCache(Shop_friendly_linksInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Shop_friendly_links_", item.Id));
 }
예제 #15
0
 private static void RemoveCache(Order_refundInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Order_refund_", item.Id));
 }
예제 #16
0
 private static void RemoveCache(Order_productitemInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Order_productitem_", item.Order_id, "_,_", item.Productitem_id));
 }
예제 #17
0
 private static void RemoveCache(Member_productInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Member_product_", item.Member_id, "_,_", item.Product_id));
 }
예제 #18
0
 private static void RemoveCache(ShopInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Shop_", item.Id));
     RedisHelper.Remove(string.Concat("pifa_BLL_ShopByCode_", item.Code));
 }
예제 #19
0
 private static void RemoveCache(ShopsecurityInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Shopsecurity_", item.Shop_id));
     RedisHelper.Remove(string.Concat("pifa_BLL_ShopsecurityByIdcard_", item.Idcard));
 }
예제 #20
0
 private static void RemoveCache(MemberInfo item)
 {
     if (item == null)
     {
         return;
     }
     RedisHelper.Remove(string.Concat("pifa_BLL_Member_", item.Id));
     RedisHelper.Remove(string.Concat("pifa_BLL_MemberByUsername_", item.Username));
     RedisHelper.Remove(string.Concat("pifa_BLL_MemberByTelphone_", item.Telphone));
     RedisHelper.Remove(string.Concat("pifa_BLL_MemberByEmail_", item.Email));
 }
예제 #21
0
		private static void RemoveCache(ExpressInfo item) {
			if (item == null) return;
			RedisHelper.Remove(string.Concat("pifa_BLL_Express_", item.Id));
		}