Ejemplo n.º 1
0
 public InvoiceItem GetInvoiceLastNumber(Invoice reciept)
 {
     InvoiceHandler myHandler = new InvoiceHandler(); return myHandler.GetInvoiceNumber(reciept);
 }
Ejemplo n.º 2
0
 public List<Invoice> GetInvoiceInDateRange(string startDate, string endDate)
 {
     InvoiceHandler myHandler = new InvoiceHandler(); return myHandler.GetInvoicesInRange(startDate, endDate);
 }
Ejemplo n.º 3
0
 public bool DeleteInvoice(int InvoiceID)
 {
     InvoiceHandler myHandler = new InvoiceHandler(); return myHandler.DeleteInvoice(InvoiceID);
 }
Ejemplo n.º 4
0
 public Invoice GetInvoice(int InvoiceID)
 {
     InvoiceHandler myHandler = new InvoiceHandler(); return myHandler.GetInvoice(InvoiceID);
 }
Ejemplo n.º 5
0
 public bool CreateInvoice(Invoice invoice)
 {
     InvoiceHandler myHandler = new InvoiceHandler(); return myHandler.CreateInvoice(invoice);
 }