private void CboTipoPonto_SelectedIndexChanged(object sender, EventArgs e) { CFiltroClient oProxy = new CFiltroClient(); PONTOCONTROLE[] oListaPonto; if (CboTipoPonto.SelectedIndex > 0) { char Tipo; if (CboTipoPonto.SelectedIndex == 1) { Tipo = char.Parse("E"); } else { Tipo = char.Parse("S"); } oListaPonto = oProxy.ListarPontosControle(Tipo); } else { oListaPonto = oProxy.ListarTodosPontosControle(); } PONTOCONTROLE oPonto = new PONTOCONTROLE(); oPonto.PoNome = "TODOS OS PONTOS"; List <PONTOCONTROLE> oLista = new List <PONTOCONTROLE>(); oLista.Add(oPonto); for (int i = 0; i < oListaPonto.Length; i++) { oLista.Add(oListaPonto[i]); } CboPonto.DataSource = oLista; CboPonto.DisplayMember = "PoNome"; CboPonto.ValueMember = "PoCodigo"; oProxy.Close(); }
public List <PONTOCONTROLE> ListarPontosControle(char Tipo) { return(PONTOCONTROLE.ListarPorTipo(Tipo)); }
public List <PONTOCONTROLE> ListarTodosPontosControle() { return(PONTOCONTROLE.ListarTodos()); }
public void Excluir(PONTOCONTROLE oPONTOCONTROLE) { PONTOCONTROLE.Excluir(oPONTOCONTROLE); }
public void Alterar(PONTOCONTROLE oPONTOCONTROLE) { PONTOCONTROLE.Alterar(oPONTOCONTROLE); }
public void Incluir(PONTOCONTROLE oPONTOCONTROLE) { PONTOCONTROLE.Incluir(oPONTOCONTROLE); }
public PONTOCONTROLE SelecionaPKPontoControle(int Codigo, string Tipo) { return(PONTOCONTROLE.SelecionaPK(Codigo, Tipo)); }