public List <SetorElementoMapa> ListarElementos(int SetorID) { List <SetorElementoMapa> elementos = new List <SetorElementoMapa>(); try { string sql = "SELECT sem.* FROM SetorElementoMapa (NOLOCK) sem WHERE sem.SetorID = " + SetorID + " ORDER BY Z"; bd.Consulta(sql); while (bd.Consulta().Read()) { SetorElementoMapa sem = new SetorElementoMapa(); sem.Ler(bd.LerInt("ID")); elementos.Add(sem); } foreach (var setorElemento in elementos) { var elemento = new ElementoMapa(); elemento.Ler(setorElemento.ElementoMapaID.Valor); setorElemento.ElementoMapa = elemento; } bd.Fechar(); } catch (Exception ex) { throw ex; } return(elementos); }
// passar o Usuario logado no sistema public SetorElementoMapaLista_B() { elementoMapa = new SetorElementoMapa(); }