public JsonResult AddTag(string title)
 {
     try
     {
         ShopBranchApplication.AddShopBranchTagInfo(title);
         return(Json(new { success = true }));
     }
     catch (Exception e)
     {
         return(Json(new { success = false, msg = e.Message }));
     }
 }