public IntacctGeneralLedgerTransaction(string targetJournalId, string description, IntacctGeneralLedgerEntry[] entries, DateTime dateCreated)
 {
     JournalId	= targetJournalId;
     Description = description;
     DateCreated = new IntacctDate(dateCreated);
     GlTransactionEntries = entries;
 }
Exemple #2
0
 public IntacctInvoice(string customerId, IntacctDate dateCreated, IntacctDate dateDue)
 {
     CustomerId  = customerId;
     DateCreated = dateCreated;
     DateDue     = dateDue;
     Items       = new List <IntacctLineItem>();
 }
		public IntacctInvoice(string customerId, IntacctDate dateCreated, IntacctDate dateDue)
		{
			CustomerId = customerId;
			DateCreated = dateCreated;
			DateDue = dateDue;
			Items = new List<IntacctLineItem>();
		}