phronCare/Domain/Entities/ECustomerDocument.cs

28 lines
635 B
C#
Raw Normal View History

2025-04-03 15:49:04 -03:00
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; }
2025-04-04 18:45:28 -03:00
//public virtual ECustomer Customers { get; set; } = null!;
2025-04-03 15:49:04 -03:00
public virtual EDocumentType Documenttypes { get; set; } = null!;
}
}