public Rental(PostRental postRental) { Description = postRental.Description; NoOfRooms = postRental.NoOfRooms; Price = postRental.Price; Address = (postRental.Address ?? string.Empty).Split('\n').ToList(); }
public ActionResult Post(PostRental postRental) { var rental = new Rental.Rental(postRental); Context.Rentals.Insert(rental); return RedirectToAction("Index"); }