Primera versión estable compatible con linux de WSAsegasa
This commit is contained in:
33
bdAsegasa/db/ramosdgscompania.cs
Normal file
33
bdAsegasa/db/ramosdgscompania.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdAsegasa.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class ramosdgscompania
|
||||
{
|
||||
public int idRamoDGSCompania { get; set; }
|
||||
|
||||
public int idRamoDGS { get; set; }
|
||||
|
||||
public int idCompania { get; set; }
|
||||
|
||||
public int idRamoAsegasa { get; set; }
|
||||
|
||||
public string? DescripcionRamo { get; set; }
|
||||
|
||||
public string DescripcionModalidad { get; set; } = null!;
|
||||
|
||||
public string? CodigoEntidad { get; set; }
|
||||
|
||||
public string? CodigoModalidad { get; set; }
|
||||
|
||||
public virtual companias idCompaniaNavigation { get; set; } = null!;
|
||||
|
||||
public virtual ramos idRamoAsegasaNavigation { get; set; } = null!;
|
||||
|
||||
public virtual ramosdgs idRamoDGSNavigation { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<polizassg> polizassg { get; set; } = new List<polizassg>();
|
||||
}
|
||||
Reference in New Issue
Block a user