LocomotiveEditViewModel ITrainsPlanesCars.CreateLocomotiveViewModel()
        {
            LocomotiveEditViewModel vm = new LocomotiveEditViewModel();

            return(vm);
        }
        public ActionResult LocoEditNew()
        {
            var vm = new LocomotiveEditViewModel();

            return(View(vm));
        }