All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 9m48s
28 lines
633 B
C#
28 lines
633 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Domain.Entities
|
|
{
|
|
public class ECustomerDocument
|
|
{
|
|
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 ECustomer Customers { get; set; } = null!;
|
|
|
|
public virtual EDocumentType Documenttypes { get; set; } = null!;
|
|
}
|
|
}
|