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
25 lines
988 B
C#
25 lines
988 B
C#
namespace Domain.Dtos.Sales
|
|
{
|
|
public class SalesDocumentSummaryDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? InternalDocumentNumber { get; set; }
|
|
public int DocumentType { get; set; }
|
|
public int Status { get; set; }
|
|
public int? QuoteId { get; set; }
|
|
public int CustomerId { get; set; }
|
|
public string CustomerName { get; set; } = string.Empty;
|
|
public int BillToCustomerId { get; set; }
|
|
public string BillToCustomerName { get; set; } = string.Empty;
|
|
public DateTime? IssueDate { get; set; }
|
|
public string Currency { get; set; } = string.Empty;
|
|
public decimal NetAmount { get; set; }
|
|
public decimal TaxAmount { get; set; }
|
|
public decimal TotalAmount { get; set; }
|
|
public DateTime? PeriodFrom { get; set; }
|
|
public DateTime? PeriodTo { get; set; }
|
|
public DateTime Createdat { get; set; }
|
|
public DateTime? Modifiedat { get; set; }
|
|
}
|
|
}
|