//
 // GET: /Good/
 public ActionResult Index()
 {
     GoodServiceClient gsc = new GoodServiceClient();
     ViewBag.listOfGoods = gsc.findAll();
     return View();
 }