Files
Final_Das/Entidades/Proveedor.cs

19 lines
414 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entidades
{
public class Proveedor
{
public Int64 Cuit { get; set; }
public string Nombre { get; set; }
public string RazonSocial { get; set; }
public string Direccion { get; set; }
public bool Habilitado { get; set; }
}
}