Ejemplo n.º 1
0
 public void PopulateDropDownList()
 {
     ViewData["CropList"] = new SelectList(cropRepoInterface.ListAllCrops(), "CropID", "CropName");
     ViewData["FarmList"] = new SelectList(farmRepoInterface.ListAllFarms(), "FarmID", "FarmName");
 }
Ejemplo n.º 2
0
 public void OnGet(string returnUrl = null)
 {
     ViewData["Farms"] = new SelectList(_farmRepo.ListAllFarms(), "FarmID", "FarmName");
     ReturnUrl         = returnUrl;
 }