using System; using System.Collections.Generic; namespace Models.Models; public partial class PhSCustomer { public int Id { get; set; } public string? Name { get; set; } public string? BusinessName { get; set; } public int? AccounttypesId { get; set; } public int? TaxConditionId { get; set; } public bool HasCreditAccount { get; set; } public decimal CreditLimit { get; set; } public bool Active { get; set; } public string? ExternalCode { get; set; } public virtual PhSAccountType? Accounttypes { get; set; } public virtual ICollection PhSCustomerAddresses { get; set; } = new List(); public virtual ICollection PhSCustomerDocuments { get; set; } = new List(); public virtual ICollection PhSPatients { get; set; } = new List(); public virtual PhOhTaxCondition? TaxCondition { get; set; } }