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
13 lines
236 B
C#
13 lines
236 B
C#
namespace Domain.Constants
|
|
{
|
|
public enum SalesDocumentType : int
|
|
{
|
|
Invoice = 1,
|
|
DebitNote = 2,
|
|
CreditNote = 3,
|
|
CreditInvoice = 4,
|
|
CreditDebitNote = 5,
|
|
CreditCreditNote = 6
|
|
}
|
|
}
|