All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (pull_request) Successful in 7m39s
- add sales document domain entities - add coverage-oriented DTO contracts - add sales document enums/constants - prepare domain model for mixed coverage scenarios - align domain contracts with future ARCA integration closes #57
16 lines
583 B
C#
16 lines
583 B
C#
namespace Domain.Dtos.Sales
|
|
{
|
|
public class SalesFiscalDocumentAssociationDto
|
|
{
|
|
public int Id { get; set; }
|
|
public int SalesFiscalDocumentId { get; set; }
|
|
public int? AssociatedSalesDocumentId { get; set; }
|
|
public int AssociatedVoucherType { get; set; }
|
|
public short AssociatedPointOfSale { get; set; }
|
|
public int AssociatedVoucherNumber { get; set; }
|
|
public string? AssociatedVoucherCuit { get; set; }
|
|
public DateTime? AssociatedVoucherDate { get; set; }
|
|
public DateTime Createdat { get; set; }
|
|
}
|
|
}
|