- Added ComplianceNFs.Infrastructure.Tests project to the solution. - Implemented unit tests for AccessDbRepository, ArchivingService, AttachmentRepository, InvoiceIngestionService, MailListener, MonitorViewModel, and Worker. - Enhanced existing tests with additional assertions and mock setups. - Updated TODOs and roadmap documentation to reflect changes in service implementations and testing coverage. - Modified ComplianceNFs.sln to include new test project and adjust solution properties.
18 lines
594 B
C#
18 lines
594 B
C#
namespace ComplianceNFs.Core.Entities
|
|
{
|
|
public class ParsedInvoice
|
|
{
|
|
public string? CnpjComp { get; set; }
|
|
public string? CnpjVend { get; set; }
|
|
public decimal? MontNF { get; set; }
|
|
public decimal? PrecNF { get; set; }
|
|
public decimal? ValorFinalComImpostos { get; set; }
|
|
public string? RsComp { get; set; }
|
|
public string? RsVend { get; set; }
|
|
public string? NumeroNF { get; set; }
|
|
public decimal? IcmsNF { get; set; }
|
|
public string? UfComp { get; set; }
|
|
public string? UfVend { get; set; }
|
|
}
|
|
}
|