Advertisement
Guest User

Untitled

a guest
Jan 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. //Controller
  2. public ActionResult Register()
  3. {
  4. RegisterViewModel viewModel = new RegisterViewModel
  5. {
  6. Districts = _unitOfWork.DistrictRepository.GetAll(),
  7. };
  8. return View(viewModel);
  9. }
  10. //View
  11. @Html.DropDownListFor(m => m.DistrictId, new SelectList(Model.Districts, "District_ID", "Name"), new { @class = "browser-default" })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement