/// <summary> /// Current list for User items. /// </summary> /// public void LoadItem(List <Animal> items) { Obs.Clear(); foreach (var item in items) { Obs.Add(item); } }
private void Salvar_Click(object sender, RoutedEventArgs e) { AtualizarCadastroPremium atualizar = new AtualizarCadastroPremium(); atualizar.Cliente = Cliente.Text; atualizar.CTO = CTO.Text; atualizar.NFPS = NFPS.Text; atualizar.Produto = Produto.Text; atualizar.SN = SN.Text; atualizar.Obs = Obs.Text; atualizar.Data = Data.Text; atualizar.VencCTO = VencCTO.Text; atualizar.Proposta = Proposta.Text; atualizar.ID = ID; atualizar.Ativo = Ativo; //Validando campos que não podem ficar em branco: if (string.IsNullOrWhiteSpace(Cliente.Text) || string.IsNullOrWhiteSpace(CTO.Text) || string.IsNullOrWhiteSpace(NFPS.Text) || string.IsNullOrWhiteSpace(Produto.Text) || string.IsNullOrWhiteSpace(SN.Text) || Data.Text == "__/__/____" || VencCTO.Text == "__/__/____" || string.IsNullOrWhiteSpace(Proposta.Text)) { new CaixaDeMensagem("Preencha todos os campos"); } else { try { //Chama o procedimento que executa o comando SQL para atualizar a tabela. atualizar.AtualizarPremium(); //Limpa todos os campos: Cliente.Clear(); CTO.Clear(); NFPS.Clear(); Produto.Clear(); SN.Clear(); Obs.Clear(); Data.Text = DateTime.Now.ToShortDateString(); VencCTO.Clear(); Proposta.Clear(); RadSuspenso.IsChecked = false; RadAtivo.IsChecked = false; } catch (Exception erro) { new CaixaDeMensagem(erro.Message); } } }
private void CadastrarPremium_Click(object sender, RoutedEventArgs e) { CadastrarPremium premium = new CadastrarPremium(); premium.Cliente = Cliente.Text; premium.CTO = CTO.Text; premium.NFPS = NFPS.Text; premium.Produto = Produto.Text; premium.SN = SN.Text; premium.Obs = Obs.Text; premium.Data = Data.Text; premium.VencCTO = VencCTO.Text; premium.Proposta = Proposta.Text; if (string.IsNullOrWhiteSpace(Cliente.Text) || string.IsNullOrWhiteSpace(CTO.Text) || string.IsNullOrWhiteSpace(NFPS.Text) || string.IsNullOrWhiteSpace(Produto.Text) || string.IsNullOrWhiteSpace(SN.Text) || Data.Text == "__/__/____" || VencCTO.Text == "__/__/____" || string.IsNullOrWhiteSpace(Proposta.Text)) { new CaixaDeMensagem("Preencha todos os campos"); } else { try { premium.CadastrarClientePremium(); } catch (Exception erro) { new CaixaDeMensagem(erro.Message); } Cliente.Clear(); CTO.Clear(); NFPS.Clear(); Produto.Clear(); SN.Clear(); Obs.Clear(); Data.Text = DateTime.Now.ToShortDateString(); VencCTO.Clear(); Proposta.Clear(); } }
private void AddEquip_Click(object sender, RoutedEventArgs e) { //Criando objeto "CadastroEquip" a partir do método Models-CadastrarEquipamento: CadastrarEquipamento cadastrarEquip = new CadastrarEquipamento(); cadastrarEquip.Cliente = Cliente.Text; cadastrarEquip.Contato = Contato.Text; cadastrarEquip.Email = Email.Text; cadastrarEquip.Senha = Senha.Text; cadastrarEquip.Dongle = Dongle.Text; cadastrarEquip.SN = SN.Text; cadastrarEquip.Data = Data.Text; cadastrarEquip.Func = Func.Text; cadastrarEquip.Tipo = Tipo + ' ' + ParcNum.Text; cadastrarEquip.Obs = Obs.Text; cadastrarEquip.Placa = Placa.Text; cadastrarEquip.NomePc = NomePc.Text; cadastrarEquip.Licença = Licença.Text; cadastrarEquip.FlopSec = FlopSec.Text; cadastrarEquip.Produto = TextTitulo.Text; cadastrarEquip.Mac = "###"; cadastrarEquip.Negócio = Negócio; try { //Validando campos que não podem ficar em branco: if (string.IsNullOrWhiteSpace(Cliente.Text)) { throw new ApplicationException("Preencha o campo 'Cliente'"); } if (string.IsNullOrWhiteSpace(Senha.Text)) { throw new ApplicationException("Preencha o campo 'Contra Senha'"); } if (string.IsNullOrWhiteSpace(Dongle.Text)) { throw new ApplicationException("Preencha o campo 'Senha Dongle'"); } if (string.IsNullOrWhiteSpace(SN.Text)) { throw new ApplicationException("Preencha o campo 'Numero de Série'"); } if (string.IsNullOrWhiteSpace(Tipo)) { throw new ApplicationException("Preencha o campo 'Tipo de Licença'"); } if (string.IsNullOrWhiteSpace(Licença.Text)) { throw new ApplicationException("Preencha o campo 'Licença'"); } //Chama o procedimento que executa o comando SQL para escrever na tabela. cadastrarEquip.CadastrarEquip(); //Limpa todos os campos: Cliente.Clear(); Contato.Clear(); Senha.Clear(); Email.Clear(); Dongle.Clear(); SN.Clear(); ParcNum.Clear(); Func.Clear(); Obs.Clear(); Placa.Clear(); Licença.Clear(); FlopSec.Clear(); NomePc.Clear(); } catch (Exception erro) { new CaixaDeMensagem(erro.Message); } }
void SomeMethod( ) { Obs.Add("item"); Obs.Clear( ); }
private void SalvarAlterações_Click(object sender, RoutedEventArgs e) { //Criando objeto "cadastrarSpot" a partir do método Models-CadastrarEquipamento: AtualizarCadastroEquipamento atualizar = new AtualizarCadastroEquipamento(); atualizar.Cliente = Cliente.Text; atualizar.Contato = Contato.Text; atualizar.Email = Email.Text; atualizar.Senha = Senha.Text; atualizar.Dongle = Dongle.Text; atualizar.SN = SN.Text; atualizar.Data = Data.Text; atualizar.Tipo = Tipo.Text; atualizar.Func = Func.Text; atualizar.Obs = Obs.Text; atualizar.Placa = Placa.Text; atualizar.NomePc = NomePc.Text; atualizar.Licença = Licença.Text; atualizar.FlopSec = FlopSec.Text; atualizar.Produto = Produto.Text; atualizar.Mac = MacAdd.Text; atualizar.DataLicença = DataLicença.Text; if (string.IsNullOrEmpty(Negócio)) { atualizar.Negócio = "Nulo"; } else { atualizar.Negócio = Negócio; } try { //Validando campos que não podem ficar em branco: if (string.IsNullOrWhiteSpace(Cliente.Text)) { throw new ApplicationException("Preencha o campo 'Cliente'"); } if (string.IsNullOrWhiteSpace(Senha.Text)) { throw new ApplicationException("Preencha o campo 'Contra Senha'"); } if (string.IsNullOrWhiteSpace(Dongle.Text)) { throw new ApplicationException("Preencha o campo 'Senha Dongle'"); } if (string.IsNullOrWhiteSpace(SN.Text)) { throw new ApplicationException("Preencha o campo 'Numero de Série'"); } if (string.IsNullOrWhiteSpace(Tipo.Text)) { throw new ApplicationException("Preencha o campo 'Tipo de Licença'"); } if (string.IsNullOrWhiteSpace(Licença.Text)) { throw new ApplicationException("Preencha o campo 'Licença'"); } //Chama o procedimento que executa o comando SQL para escrever na tabela. atualizar.AtualizarEquip(); //Limpa todos os campos: Cliente.Clear(); Contato.Clear(); Senha.Clear(); Email.Clear(); Dongle.Clear(); SN.Clear(); Data.Clear(); DataLicença.Clear(); Tipo.Clear(); Func.Clear(); Obs.Clear(); Placa.Clear(); Licença.Clear(); FlopSec.Clear(); NomePc.Clear(); MacAdd.Clear(); Produto.Clear(); Block_Garantia.Text = " "; Block_Premium.Text = " "; Block_Negócio.Text = " "; RadVenda.IsChecked = false; RadDemo.IsChecked = false; RadAlguel.IsChecked = false; RadFeira.IsChecked = false; DataLicença.FontWeight = FontWeights.Regular; DataLicença.Foreground = Brushes.DimGray; } catch (Exception erro) { new CaixaDeMensagem(erro.Message); } }