public DetalharProduto(Projeto4_Junior.Modelo.Produto produto) { InitializeComponent(); DescricaoProduto.Text = produto.Descricao; ValorProduto.Text = Convert.ToString(produto.Valor); QuantidadeProduto.Text = Convert.ToString(produto.Quantidade); }
public DetalharFuncionario(Projeto4_Junior.Modelo.Funcionario func) { InitializeComponent(); tbNome.Text = func.Nome; tbCpf.Text = func.Cpf; tbTelefone.Text = func.Telefone; tbDataNascimento.Text = func.DataNascimento; tbPorcentagem.Text = ""+func.Porcentagem; tbEndereco.Text = func.Endereco; }
public AlterarFuncionario(Projeto4_Junior.Modelo.Funcionario func, ListarFuncionario listarFunc) { InitializeComponent(); tbNome.Text = func.Nome; tbTelefone.Text = func.Telefone; tbCpf.Text = func.Cpf; tbDataNascimento.Text = func.DataNascimento; tbPorcentagem.Text = ""+func.Porcentagem; int cont = 0; String concCep = ""; for (int x = 0; x < func.Endereco.Length; x++) { String currentEnd = func.Endereco.Substring(x, 1); if (currentEnd != ",") { switch (cont) { case 0: tbRuaEndereco.Text += currentEnd; break; case 1: tbNumeroEndereco.Text += currentEnd; break; case 2: tbComplementoEndereco.Text += currentEnd; break; case 3: tbBairroEndereco.Text += currentEnd; break; case 4: if (currentEnd != " ") concCep += currentEnd; else tbCepEndereco.Text = concCep; break; case 5: tbCidadeEndereco.Text += currentEnd; break; case 6: cbUfEndereco.Text += currentEnd; break; } } else { cont++; x++; } } this.listar = listarFunc; }
public DetalharUsuario(Projeto4_Junior.Modelo.Usuario usu) { InitializeComponent(); Nome_Usu.Text = usu.Nome; Login_Usu.Text = usu.Login; Senha_Usu.Text = usu.Senha; if (usu.isGestor == 1) { Tipo_Usu.Text = "Gestor"; } else { Tipo_Usu.Text = "Usuario"; } }