phronCare/Models/Models/PhSCustomer.cs
Leandro Hernan Rojas 50014b6765
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 9m48s
Add Customers in API
2025-04-03 15:50:37 -03:00

34 lines
919 B
C#

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<PhSCustomerAddress> PhSCustomerAddresses { get; set; } = new List<PhSCustomerAddress>();
public virtual ICollection<PhSCustomerDocument> PhSCustomerDocuments { get; set; } = new List<PhSCustomerDocument>();
public virtual ICollection<PhSQuoteHeader> PhSQuoteHeaders { get; set; } = new List<PhSQuoteHeader>();
}