public static MvcHtmlString DropDownListForUsers(this HtmlHelper htmlHelper, string name) { DrugAdminLogic bl = new DrugAdminLogic(); string options = ""; foreach (var user in bl.listMedicine()) { options += $"<option value ='{user.Name}'> {user.Name} </option>"; } return(new MvcHtmlString($"<select name={name} style='color:black'>{options}</select>")); }
public MedicineModel() { Medicines = dl.listMedicine(); }