public ActionResult WatchBid()
        {
            InitCurrentEvent();
            Event evnt = ViewData["CurrentEvent"] as Event ?? new Event();

            if (evnt.ID == 0 && !evnt.IsCurrent && evnt.CloseStep == 2)
            {
                return(RedirectToAction("AuctionsParticipated", new { id = evnt.ID }));
            }
            return(View(BidRepository.GetBidWatchForUser(AppHelper.CurrentUser.ID, evnt.ID)));
        }