Exemplo n.º 1
0
 public ParamOrderToPdf(EOrderStatus status, int quoteValidityDay)
 {
     _commandId            = 0;
     _billId               = 0;
     _status               = status;
     _currency             = "";
     _lang                 = "";
     _licenseKey           = "";
     _quoteValidityDay     = quoteValidityDay;
     _typeQuoteOrProformat = EOrderStatus.Quote;
     _isQuoteConstructorReferencesVisible   = true;
     _isCommandConstructorReferencesVisible = false;
     _paramEmail = new ParamEmail();
 }
Exemplo n.º 2
0
 public ParamOrderToPdf(int commandId, int idBill)
 {
     _commandId            = commandId;
     _billId               = idBill;
     _status               = EOrderStatus.Order;
     _quoteValidityDay     = 2;
     _typeQuoteOrProformat = EOrderStatus.Quote;
     _isQuoteConstructorReferencesVisible   = true;
     _isCommandConstructorReferencesVisible = false;
     _paramEmail = new ParamEmail();
     _currency   = "";
     _licenseKey = "";
     _lang       = "";
 }