private void ExcluirTamanho() { TamanhoBLL bll = new TamanhoBLL(); bll.Delete(Convert.ToInt32(grvListaTamanhos.CurrentRow.Cells[1].Value)); CarregaListaTamanhos(); }
private void CarregaTamanho(int pCdTamanho) { TamanhoBLL bll = new TamanhoBLL(); TamanhoInfo info = bll.Get(pCdTamanho); txtDsTamanho.Text = info.DsTamanho; }
private void CadastraNovoTamanho() { TamanhoBLL bll = new TamanhoBLL(); TamanhoInfo info = new TamanhoInfo(); info.DsTamanho = txtDsTamanho.Text; bll.Inserir(info); }
private void CarregaTamanhos(int pCdTamanho = 0) { TamanhoBLL bll = new TamanhoBLL(); cbCdTamanho.DataSource = bll.Listar(); cbCdTamanho.DisplayMember = "DsTamanho"; cbCdTamanho.ValueMember = "CdTamanho"; cbCdTamanho.SelectedValue = pCdTamanho as object; }
private void AtualizarTamanho() { TamanhoBLL bll = new TamanhoBLL(); TamanhoInfo info = new TamanhoInfo(); info.CdTamanho = _CdTamanho; info.DsTamanho = txtDsTamanho.Text; bll.Update(info); this.Close(); }
public void CarregaListaTamanhos() { TamanhoBLL bll = new TamanhoBLL(); grvListaTamanhos.DataSource = bll.Listar(); }