cambiado internal x public

This commit is contained in:
Ignacio Jesús Diana
2024-02-24 17:19:58 -03:00
parent 0b073d51b9
commit 65c8469c92
38 changed files with 25 additions and 21 deletions

View File

@@ -7,8 +7,12 @@ using System.Threading.Tasks;
namespace Entidades
{
internal class PedidoDePresupuesto
public class PedidoDePresupuesto
{
public PedidoDePresupuesto()
{
detallesPedidos = new List<DetallePedido>();
}
public int Id { get; set; }
public DateTime Fecha { get; set; }