merma completa

This commit is contained in:
carlos
2024-01-18 23:17:35 -06:00
parent a438eb1914
commit f084bb8e20
24 changed files with 895 additions and 33 deletions
+36
View File
@@ -0,0 +1,36 @@
using compabetov2.database.modelos;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace compabetov2
{
public partial class verMerma : Form
{
private Merma merma;
public verMerma(Merma merma)
{
InitializeComponent();
this.merma = merma;
llenarComponentes();
}
private void llenarComponentes()
{
txtDescripcion.Text = merma.razon;
txtResponsable.Text = merma.responsable;
dtFecha.Text = merma.fecha;
}
private void verMerma_Load(object sender, EventArgs e)
{
}
}
}