示例#1
0
        public ActionResult Update(ShipmentFormViewModel viewModel)
        {
            if (!ModelState.IsValid)
            {
                //viewModel.TypeOfLoads = context.TypeOfLoads.ToList();
                viewModel.TypeOfLoads = unitOfWork.TypeOfLoads.GetTypesOfLoad();
                return(View("ShipmentForm", viewModel));
            }

            //var shipmentDb = context.Shipments.Single(s => s.Id == viewModel.Id);
            var shipmentDb = unitOfWork.Shipments.GetShipment(viewModel.Id);

            if (shipmentDb == null)
            {
                return(HttpNotFound());
            }

            if (shipmentDb.DriverId != User.Identity.GetUserId())
            {
                return(new HttpUnauthorizedResult());
            }

            shipmentDb.Modify(viewModel.GetDateTime(), viewModel.Location, viewModel.TypeOfLoad);

            //context.SaveChanges();
            unitOfWork.Complete();

            return(RedirectToAction("MyShipments", "Shipments"));
        }
示例#2
0
        public ActionResult Create(ShipmentFormViewModel viewModel)
        {
            if (!ModelState.IsValid)
            {
                //viewModel.TypeOfLoads = context.TypeOfLoads.ToList();
                viewModel.TypeOfLoads = unitOfWork.TypeOfLoads.GetTypesOfLoad();

                return(View("ShipmentForm", viewModel));
            }

            var shipment = new Shipment()
            {
                DriverId     = User.Identity.GetUserId(),
                DateTime     = viewModel.GetDateTime(),
                TypeOfLoadId = viewModel.TypeOfLoad,
                Location     = viewModel.Location
            };

            //context.Shipments.Add(shipment);
            //context.SaveChanges();
            unitOfWork.Shipments.Add(shipment);
            unitOfWork.Complete();

            return(RedirectToAction("MyShipments", "Shipments"));
        }
示例#3
0
        public ActionResult Create()
        {
            var viewModel = new ShipmentFormViewModel
            {
                Heading = "Add Shipment",
                //TypeOfLoads = context.TypeOfLoads.ToList()
                TypeOfLoads = unitOfWork.TypeOfLoads.GetTypesOfLoad()
            };

            return(View("ShipmentForm", viewModel));
        }
示例#4
0
        public ActionResult Edit(int id)
        {
            var userId = User.Identity.GetUserId();

            //var shipment = context.Shipments.Single(s => s.Id == id && s.DriverId == userId);
            var shipment = unitOfWork.Shipments.EditShipment(id, userId);

            var viewModel = new ShipmentFormViewModel()
            {
                Id         = shipment.Id,
                Heading    = "Edit Shipment",
                Location   = shipment.Location,
                Date       = shipment.DateTime.ToLongDateString(),
                Time       = shipment.DateTime.ToString("HH:mm"),
                TypeOfLoad = shipment.TypeOfLoadId,
                //TypeOfLoads = context.TypeOfLoads.ToList()
                TypeOfLoads = unitOfWork.TypeOfLoads.GetTypesOfLoad()
            };

            return(View("ShipmentForm", viewModel));
        }
示例#5
0
 public MainWindow()
 {
     InitializeComponent();
     _vm = new ShipmentFormViewModel();
     DataContext = _vm;
 }