Entidades con sus propiedades sin funciones
This commit is contained in:
19
Entidades/Proveedor.cs
Normal file
19
Entidades/Proveedor.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Entidades
|
||||
{
|
||||
internal class Proveedor
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string Nombre { get; set; }
|
||||
|
||||
public string RazonSocial { get; set; }
|
||||
|
||||
public bool Habilitado { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user