public ActionResult Create()
 {
     ViewBag.ShipmentMethods = _shipmentMethodService.Get().Select(sh => new SelectListItem
     {
         Value = sh.Id.ToString(),
         Text  = sh.Description
     });
     return(View());
 }
 public ActionResult List()
 {
     return(View(_shipmentMethodService.Get().ToList()));
 }