20 lines
393 B
C#
20 lines
393 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Entidades
|
|
{
|
|
internal class PedidoDePresupuesto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public DateTime Fecha { get; set; }
|
|
|
|
private List<DetallePedido> detallesPedidos { get; set; }
|
|
|
|
public Proveedor Proveedor { get; set; }
|
|
}
|
|
}
|