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
|
||
|
|
}
|
||
|
|
}
|