public void BuscarTest() { Usuario usuarios; usuarios = UsuarioBLL.Buscar(1); Assert.IsNotNull(usuarios); }
public void BuscarTest() { int id = 1; Usuarios usuario = new Usuarios(); usuario = UsuarioBLL.Buscar(id); Assert.IsNotNull(usuario); }
public void BuscarTest() { Usuario usuario = new Usuario(); int id = 2; usuario = UsuarioBLL.Buscar(id); Assert.IsNotNull(usuario); }
private void BuscarButton_Click(object sender, EventArgs e) { int id = Convert.ToInt32(UsuarioIdNumericUpDown.Value); Usuario usuario = UsuarioBLL.Buscar(id); if (usuario != null) { NombresTextBox.Text = usuario.Nombres; EmailTextBox.Text = usuario.Email; NoTelefonoMaskedTextBox.Text = usuario.NoTelefono; ContraseñaTextBox.Text = usuario.Contraseña; } }
public void BuscarTest() { Usuarios usuario = new Usuarios(); bool paso = false; usuario = UsuarioBLL.Buscar(1); if (usuario != null) { paso = true; } Assert.AreEqual(paso, true); }
private string getNivel(string paramUsername) { string nivel = string.Empty; if (UsuarioBLL.Buscar(paramUsername) == null) { } else { nivel = UsuarioBLL.Buscar(paramUsername).Roles; } return(nivel); }
private void GuardarButton_Click(object sender, EventArgs e) { Usuario usuario; bool paso = false; if (HayErrores()) { MessageBox.Show("Debe llenar los campos indicados", "Validación", MessageBoxButtons.OK, MessageBoxIcon.Error); } else { usuario = LlenaClase(); if (UsuarioIdNumericUpDown.Value == 0) { paso = UsuarioBLL.Guardar(usuario); MessageBox.Show("Guardado!!", "Exito", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { int id = Convert.ToInt32(UsuarioIdNumericUpDown.Value); usuario = UsuarioBLL.Buscar(id); if (usuario != null) { paso = UsuarioBLL.Modificar(LlenaClase()); MessageBox.Show("Modificado!!", "Exito", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Id no existe", "Falló", MessageBoxButtons.OK, MessageBoxIcon.Error); } } if (paso) { Limpiar(); } else { MessageBox.Show("No se pudo guardar!!", "Falló", MessageBoxButtons.OK, MessageBoxIcon.Error); } } }
private void BuscarButton_Click(object sender, EventArgs e) { int id = Convert.ToInt32(UsuarioIdNumericUpDown.Value); Usuario usuario = UsuarioBLL.Buscar(id); if (usuario != null) { NombresTextBox.Text = usuario.Nombres; EmailTextBox.Text = usuario.Email; NoTelefonoMaskedTextBox.Text = usuario.NoTelefono; ContraseñaTextBox.Text = usuario.Contraseña; FechadateTimePicker.Value = usuario.FechaCreacion; AaminradioButton.Checked = usuario.pocision; } }
private void buscarButton_Click(object sender, RoutedEventArgs e) { Usuarios usuariolocal = UsuarioBLL.Buscar(usuarios.UsuarioId); if (usuariolocal != null) { usuarios = usuariolocal; Llenar(); } else { LimpiarCampos(); MessageBox.Show("No Encontrado", "Salir", MessageBoxButton.OK, MessageBoxImage.Exclamation); } }
private void BuscarButton_Clic(object serder, RoutedEventArgs e) { Usuario encotrado = UsuarioBLL.Buscar(Utilidades.ToInt(IDTextBox.Text)); if (encotrado != null) { this.usuario = encotrado; Cargar(); MessageBox.Show("Exito!!", "EXITO", MessageBoxButton.OK, MessageBoxImage.Information); } else { Limpiar(); MessageBox.Show("Usuario No Exite", "ERROR", MessageBoxButton.OK, MessageBoxImage.Error); } }
private void BuscarButton_Click_1(object sender, EventArgs e) { int id; Usuarios usuarios = new Usuarios(); int.TryParse(UsuarioIdnumericUpDown.Text, out id); Limpiar(); usuarios = UsuarioBLL.Buscar(id); if (usuarios != null) { MessageBox.Show("Usuario encontrado"); LlenaCampo(usuarios); } else { MessageBox.Show("usuario no encontrado"); } }
private void BuscarButton_Click(object sender, EventArgs e) { Usuario usuario = new Usuario(); int id; int.TryParse(IdNumericUpDown.Text, out id); Limpiar(); usuario = UsuarioBLL.Buscar(id); if (usuario != null) { LLenaCampo(usuario); } else { MessageBox.Show("Usuario no encontrado", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void EliminarButton_Click(object sender, EventArgs e) { int id; int.TryParse(IdNumericUpDown.Text, out id); Limpiar(); if (UsuarioBLL.Buscar(id) != null) { if (UsuarioBLL.Eliminar(id)) { MessageBox.Show("Eliminado!", "Exito", MessageBoxButtons.OK, MessageBoxIcon.Information); } } else { MessageBox.Show("No se puede eliminar el usuario que no existe", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void BuscarButton_Click(object sender, EventArgs e) { int id; Usuario usuarios = new Usuario(); int.TryParse(IdNumericUpDown.Text, out id); Limpiar(); usuarios = UsuarioBLL.Buscar(id); if (usuarios != null) { LlenaCampo(usuarios); } else { MessageBox.Show("Persona no encontrada", "Id Incorrecto", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void BtnBuscar_Click(object sender, EventArgs e) { int id; Usuarios persona = new Usuarios(); int.TryParse(UsarioId.Text, out id); Limpiar(); persona = UsuarioBLL.Buscar(id); if (persona != null) { MessageBox.Show("Persona Encontrada"); LlenaCampo(persona); } else { MessageBox.Show("Persona no Encontada"); } }
private void BuscarButton_Click(object sender, EventArgs e) { int id; Usuario usuario = new Usuario(); int.TryParse(IdNumericUpDown.Text, out id); Limpiar(); usuario = UsuarioBLL.Buscar(id); if (usuario != null) { MessageBox.Show("Persona Encotrada"); LlenarCampos(usuario); } else { MessageBox.Show("Persona no Encontrada"); } }
private void EliminarButton_Click(object sender, EventArgs e) { int id = Convert.ToInt32(UsuarioIdNumericUpDown.Value); Usuario usuario = UsuarioBLL.Buscar(id); if (usuario != null) { if (UsuarioBLL.Eliminar(id)) { MessageBox.Show("Eliminado!!", "Exito", MessageBoxButtons.OK, MessageBoxIcon.Information); Limpiar(); } else { MessageBox.Show("No se pudo eliminar!!", "Falló", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { MessageBox.Show("No existe!!", "Falló", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private bool ExisteEnLaBaseDatos() { Usuarios usuarios = UsuarioBLL.Buscar((int)Convert.ToInt32(idTextBox1.Text)); return(usuarios != null); }
private bool ExisteEnLaBaseDeDatos() { Usuario usuarios = UsuarioBLL.Buscar((int)IdNumericUpDown.Value); return(usuarios != null); }
private void ReportBody() { fontStyle = FontFactory.GetFont("Calibri", 9f, 1); var _fontStyle = FontFactory.GetFont("Calibri", 9f, 0); #region Table Header pdfCell = new PdfPCell(new Phrase("ID", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.LightGray; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase("Importador", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.LightGray; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase("Usuario", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.LightGray; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase("Email", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.LightGray; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase("Telefono", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.LightGray; pdfTable.AddCell(pdfCell); pdfTable.CompleteRow(); #endregion #region Table Body int num = 0; foreach (var item in lista) { num++; pdfCell = new PdfPCell(new Phrase(item.ImportadorId.ToString(), _fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(item.Nombre, _fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(UsuarioBLL.Buscar(item.UsuarioId).Nombre, _fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(item.Email, _fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(item.Telefono, _fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfTable.AddCell(pdfCell); pdfTable.CompleteRow(); } pdfCell = new PdfPCell(new Phrase("Total de Importadores", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfCell.Border = 0; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(num++.ToString(), fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfCell.Border = 0; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(" ", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfCell.Border = 0; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(" ", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfCell.Border = 0; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(" ", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfCell.Border = 0; pdfTable.AddCell(pdfCell); pdfTable.CompleteRow(); #endregion }
private void ReportBody() { fontStyle = FontFactory.GetFont("Calibri", 9f, 1); var _fontStyle = FontFactory.GetFont("Calibri", 9f, 0); #region Table Header pdfCell = new PdfPCell(new Phrase("ID", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.LightGray; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase("Fecha", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.LightGray; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase("Usuario", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.LightGray; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase("Cliente", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.LightGray; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase("Monto", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.LightGray; pdfTable.AddCell(pdfCell); pdfTable.CompleteRow(); #endregion #region Table Body int num = 0; foreach (var item in lista) { num++; pdfCell = new PdfPCell(new Phrase(item.PagoRentaId.ToString(), _fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(item.Fecha.ToString("dd/MM/yyyy"), _fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(UsuarioBLL.Buscar(item.UsuarioId).Nombre, _fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(ClientesBLL.Buscar(item.ClienteId).Nombre, _fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(item.Monto.ToString("N2"), _fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfTable.AddCell(pdfCell); pdfTable.CompleteRow(); } pdfCell = new PdfPCell(new Phrase("Total de pagos", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfCell.Border = 0; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(num++.ToString(), fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfCell.Border = 0; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(" ", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfCell.Border = 0; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase("Monto total", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfCell.Border = 0; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(monto.ToString("N2"), fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfCell.Border = 0; pdfTable.AddCell(pdfCell); pdfTable.CompleteRow(); #endregion }
public void BuscarTest() { var paso = UsuarioBLL.Buscar(1); Assert.IsNotNull(paso); }
private bool ExisteEnLaBaseDeDatos() { Usuarios persona = UsuarioBLL.Buscar((int)UsarioId.Value); return(persona != null); }
private void ReportBody() { fontStyle = FontFactory.GetFont("Calibri", 9f, 1); var _fontStyle = FontFactory.GetFont("Calibri", 9f, 0); #region Table Header pdfCell = new PdfPCell(new Phrase("ID", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.LightGray; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase("Usuario", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.LightGray; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase("Cliente", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.LightGray; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase("Fecha", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.LightGray; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase("Cuota", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.LightGray; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase("Monto", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.LightGray; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase("Balance", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.LightGray; pdfTable.AddCell(pdfCell); pdfTable.CompleteRow(); #endregion #region Table Body int num = 0; foreach (var item in pago.CuotaDetalles) { num++; pdfCell = new PdfPCell(new Phrase(item.CuotaId.ToString(), _fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(UsuarioBLL.Buscar(item.UsuarioId).Nombre, _fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(ClientesBLL.Buscar(pago.ClienteId).Nombre, _fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(pago.FechaVenta.ToString("dd/MM/yyyy"), _fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(item.Numero.ToString(), _fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(item.Monto.ToString("N2"), _fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(item.Balance.ToString("N2"), _fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfTable.AddCell(pdfCell); pdfTable.CompleteRow(); } CalcularSumatoria(pago.CuotaDetalles); pdfCell = new PdfPCell(new Phrase("Total a pagar", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfCell.Border = 0; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(total.ToString("N2"), _fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(" ", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfCell.Border = 0; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(" ", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfCell.Border = 0; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(" ", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfCell.Border = 0; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(" ", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfCell.Border = 0; pdfTable.AddCell(pdfCell); pdfCell = new PdfPCell(new Phrase(" ", fontStyle)); pdfCell.HorizontalAlignment = Element.ALIGN_CENTER; pdfCell.VerticalAlignment = Element.ALIGN_MIDDLE; pdfCell.BackgroundColor = BaseColor.White; pdfCell.Border = 0; pdfTable.AddCell(pdfCell); pdfTable.CompleteRow(); #endregion }