private void cmbTipoContrato_SelectedIndexChanged(object sender, EventArgs e) { if (cmbTipoContrato.Text.Equals("Todos")) { PintarTabla(servicio.RetornarTodo()); } else if (cmbTipoContrato.Text.Equals("Fecha por mes y año")) { DateTime fecha = this.dtpFechaPago.Value; PintarTabla(servicio.ConsultarAñoMes(fecha)); } else { PintarTabla(servicio.ConsultarPagos(cmbTipoContrato.Text)); } }