Add Patch Loop Recursivo
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 1m40s

This commit is contained in:
Leandro Hernan Rojas 2025-04-04 18:02:15 -03:00
parent 3f701f9500
commit 18854faa98
3 changed files with 3 additions and 3 deletions

View File

@ -18,6 +18,6 @@ namespace Domain.Entities
public DateTime? CreationDate { get; set; } public DateTime? CreationDate { get; set; }
public virtual ICollection<ECustomer> Customers { get; set; } = new List<ECustomer>(); //public virtual ICollection<ECustomer> Customers { get; set; } = new List<ECustomer>();
} }
} }

View File

@ -28,7 +28,7 @@ namespace Domain.Entities
public virtual EAccountType? Accounttypes { get; set; } public virtual EAccountType? Accounttypes { get; set; }
public virtual ICollection<ECustomerAddress> PhSCustomerAddresses { get; set; } = new List<ECustomerAddress>(); public virtual ICollection<ECustomerAddress> PhSCustomerAddress { get; set; } = new List<ECustomerAddress>();
public virtual ICollection<ECustomerDocument> PhSCustomerDocuments { get; set; } = new List<ECustomerDocument>(); public virtual ICollection<ECustomerDocument> PhSCustomerDocuments { get; set; } = new List<ECustomerDocument>();

View File

@ -10,6 +10,6 @@
public string? Description { get; set; } public string? Description { get; set; }
public virtual ICollection<ECustomerDocument> PhSCustomerDocuments { get; set; } = new List<ECustomerDocument>(); //public virtual ICollection<ECustomerDocument> PhSCustomerDocuments { get; set; } = new List<ECustomerDocument>();
} }
} }