コード例 #1
0
        public List <SelectListItem> DropListDepa()
        {
            var dato = data.DropListDepartamento();
            List <SelectListItem> listaDepa = data.DropListDepartamento().ConvertAll(d => {
                return(new SelectListItem
                {
                    Text = d.FullName,
                    Value = d.idDepto.ToString()
                });
            });

            return(listaDepa);
        }