24 lines
531 B
C#
24 lines
531 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace Models.Models;
|
|||
|
|
|
|||
|
|
public partial class PhSCustomerDocument
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
|
|||
|
|
public int CustomersId { get; set; }
|
|||
|
|
|
|||
|
|
public int DocumenttypesId { get; set; }
|
|||
|
|
|
|||
|
|
public string DocumentNumber { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public DateOnly? IssueDate { get; set; }
|
|||
|
|
|
|||
|
|
public DateOnly? ExpiryDate { get; set; }
|
|||
|
|
|
|||
|
|
public virtual PhSCustomer Customers { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public virtual PhSDocumentType Documenttypes { get; set; } = null!;
|
|||
|
|
}
|