| 12345678910111213141516171819 |
-
- using System.Text;
- namespace YZXYH.Repository
- {
- public partial class IndustryInfoRepository
- {
- public string GetIndustrys()
- {
- StringBuilder sb = new StringBuilder();
- var lists = Get(c => c.IsLocked == "N");
- foreach (var list in lists)
- {
- sb.Append("<option value=\"" + list.Id + "\">" + list.IndustryName + "</option>");
- }
- return sb.ToString();
- }
- }
- }
|