void Preencher_dgv_clientes(object sender, EventArgs e) { Preencher.GridView(dgv_clientes, Listar.Clientes.PorNome(clientes_search.Text), Etiquetas.pessoas, Etiquetas.pessoas_weights, false); lbl_naoHaClientes.Visible = dgv_clientes.Rows.Count.Equals(0); btn_mensageiro.Visible = !dgv_clientes.Rows.Count.Equals(0); btn_historico.Visible = !dgv_clientes.Rows.Count.Equals(0) && Buscar.Usuario.IsTecnico; }
void Preencher_dgv_funcionarios(object sender, EventArgs e) { item = sender == null ? string.Empty : (sender as Control).Text; table = Listar.Funcionarios.PorNome(item); Preencher.GridView(dgv_funcionarios, table, Etiquetas.pessoas, Etiquetas.pessoas_weights, false); lbl_naoHaFuncionarios.Visible = dgv_funcionarios.Rows.Count.Equals(0); }
void Preencher_dgv_agendamentos(object sender, EventArgs e) { try { Datas.Agora = Convert.ToDateTime(agendamentos_search.Text); }catch (Exception ex) { Datas.Agora = Convert.ToDateTime(Datas.HojeFormatada); } Preencher.GridView(dgv_agendamentos, Listar.Agendamentos.PorDia(Datas.Agora), Etiquetas.agendamentos, Etiquetas.agendamentos_weights, false); lbl_naoHaAgendamentos.Visible = dgv_agendamentos.Rows.Count.Equals(0); }