public ActionResult AddAuctinoProduct()
        {
            AuctionHandler mHandler = new AuctionHandler();

            ViewBag.Brands = AuctionHelper.ToSelectItemList(mHandler.GetCategories());
            return(View());
        }
 public ActionResult AuctionByCategory(int id)
 {
     ViewBag.AuctionCat = AuctionHelper.AuctionSummeryList(new AuctionHandler().GetAuctionByCategory(id));
     return(View());
 }