31 lines
772 B
C#
31 lines
772 B
C#
using BeWo.Data.Entities;
|
|
using System;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace AICore.Context.Entry
|
|
{
|
|
public class CustomerNavigationContextEntry : NavigationContextEntry<Customer>
|
|
{
|
|
[JsonPropertyName("Adresse")]
|
|
public string AddressString { get; set; }
|
|
|
|
[JsonPropertyName("Alias")]
|
|
public string CustomerAlias { get; set; }
|
|
|
|
[JsonPropertyName("Klient-ID")]
|
|
public long CustomerOid { get; set; }
|
|
|
|
[JsonPropertyName("Geburtstag")]
|
|
public DateTime? DateOfBirth { get; set; }
|
|
|
|
[JsonPropertyName("EigenkapitalBeitrag")]
|
|
public decimal? EquityContribution { get; set; }
|
|
|
|
[JsonPropertyName("FullName")]
|
|
public string FullName { get; set; }
|
|
|
|
[JsonPropertyName("Rechnungsadresse")]
|
|
public string InvoiceAddressString { get; set; }
|
|
}
|
|
}
|