public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext) { if (bindingContext.ModelType != typeof(PersonViewModel)) { return null; } NameValueCollection form = controllerContext.HttpContext.Request.Form; var person = new PersonViewModel(); var firstName = form["FirstName"]; var lastName = form["LastName"]; var day = form["day"] ?? "1"; var month = form["month"] ?? "1"; var year = form["year"] ?? "2009"; if (string.IsNullOrEmpty(firstName)) { bindingContext.ModelState.AddModelError("firstname", "First name cannot be empty."); } if (string.IsNullOrEmpty(lastName)) { bindingContext.ModelState.AddModelError("lastName", "Last name cannot be empty."); } bindingContext.ModelState.SetModelValue("lastName", bindingContext.ValueProvider["lastName"]); bindingContext.ModelState.SetModelValue("firstName", bindingContext.ValueProvider["firstName"]); person.FirstName = firstName; person.LastName = lastName; //person.BirthDate = new DateTime(year.ToInt32(), month.ToInt32(), day.ToInt32()); return person; }
public void Add(PersonViewModel viewModel) { if (viewModel == null) return; personList.Add(viewModel); }