Feat: Se añaden las capas de modelos y respositorios para el modulo de Suscripciones
This commit is contained in:
18
Backend/GestionIntegral.Api/Models/Suscripciones/Factura.cs
Normal file
18
Backend/GestionIntegral.Api/Models/Suscripciones/Factura.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
namespace GestionIntegral.Api.Models.Suscripciones
|
||||
{
|
||||
public class Factura
|
||||
{
|
||||
public int IdFactura { get; set; }
|
||||
public int IdSuscripcion { get; set; }
|
||||
public string Periodo { get; set; } = string.Empty;
|
||||
public DateTime FechaEmision { get; set; }
|
||||
public DateTime FechaVencimiento { get; set; }
|
||||
public decimal ImporteBruto { get; set; }
|
||||
public decimal DescuentoAplicado { get; set; }
|
||||
public decimal ImporteFinal { get; set; }
|
||||
public string Estado { get; set; } = string.Empty;
|
||||
public string? NumeroFactura { get; set; }
|
||||
public int? IdLoteDebito { get; set; }
|
||||
public string? MotivoRechazo { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user