All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 9m48s
38 lines
1.0 KiB
C#
38 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Domain.Entities
|
|
{
|
|
public class ECustomer
|
|
{
|
|
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 EAccountType? Accounttypes { get; set; }
|
|
|
|
public virtual ICollection<ECustomerAddress> ECustomerAddresses { get; set; } = new List<ECustomerAddress>();
|
|
|
|
public virtual ICollection<ECustomerDocument> ECustomerDocuments { get; set; } = new List<ECustomerDocument>();
|
|
|
|
//public virtual ICollection<PhSQuoteHeader> PhSQuoteHeaders { get; set; } = new List<PhSQuoteHeader>();
|
|
}
|
|
}
|