public JsonResult AddHomeProducts(string productIds, PlatformType platformType)
 {
     if (string.IsNullOrEmpty(productIds))
     {
         return(Json(new { success = true }));
     }
     mobileHomeproduct.AddHomeProducts(CurrentSellerManager.ShopId, productIds, platformType);
     return(Json(new { success = true }));
 }
 public JsonResult AddHomeProducts(string productIds, PlatformType platformType)
 {
     mobileHomeproduct.AddHomeProducts(base.CurrentSellerManager.ShopId, productIds, platformType);
     return(Json(new { success = true }));
 }