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 EAccountType
|
|
|
|
|
|
{
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
|
|
public string? Description { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public decimal? CreditLimit { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime? CreationDate { get; set; }
|
|
|
|
|
|
|
2025-04-04 18:02:15 -03:00
|
|
|
|
//public virtual ICollection<ECustomer> Customers { get; set; } = new List<ECustomer>();
|
2025-04-03 15:49:04 -03:00
|
|
|
|
}
|
|
|
|
|
|
}
|