2026/07/01-01
This commit is contained in:
29
bdGrupoSanchoToro/db/familias.cs
Normal file
29
bdGrupoSanchoToro/db/familias.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class familias
|
||||
{
|
||||
public int idFamilia { get; set; }
|
||||
|
||||
public string? Codigo { get; set; }
|
||||
|
||||
public string? Descripcion { get; set; }
|
||||
|
||||
public int? idUsuario { get; set; }
|
||||
|
||||
public string? CuentaContableVenta { get; set; }
|
||||
|
||||
public string? CuentaContableVentaAlquiler { get; set; }
|
||||
|
||||
public string? CuentaContableCompra { get; set; }
|
||||
|
||||
public string? CuentaContableCompraAlquiler { get; set; }
|
||||
|
||||
public virtual usuarios? idUsuarioNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<productos> productos { get; set; } = new List<productos>();
|
||||
}
|
||||
Reference in New Issue
Block a user