dev #56

Merged
fede merged 25 commits from dev into main 2025-02-03 02:02:16 -03:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit 928c590d1c - Show all commits
+3
View File
@@ -670,6 +670,9 @@ public partial class AlquilaFacilContext : DbContext
entity.Property(e => e.Monto)
.HasPrecision(12)
.HasColumnName("monto");
entity.Property(e => e.UrlRecibo)
.HasColumnType("text")
.HasColumnName("urlRecibo");
entity.HasOne(d => d.IdCompradorNavigation).WithMany(p => p.VentaIdCompradorNavigations)
.HasForeignKey(d => d.IdComprador)
+2
View File
@@ -23,6 +23,8 @@ public partial class Venta
public int Iddivisa { get; set; }
public string? UrlRecibo { get; set; }
public virtual ICollection<Contrato> Contratos { get; set; } = new List<Contrato>();
public virtual Cliente? IdCompradorNavigation { get; set; }