public ActionResult EbayItemImportDetail(StagingEbayItemModel item)
 {
     try
     {
         if (StagingEbayLoadService.UpdateEbayItemImportDetail(item.EbayItemtId, item.AFASerial, User.Identity.GetUserId()))
         {
             TempData["message"] = new MessageViewModel
             {
                 IsUpdated = true,
                 Message   = "Item has been updated."
             };
             return(RedirectToAction("EbayItemImportLV"));
         }
     }
     catch (Exception)
     {
         throw;
     }
     return(View(item));
 }