public int CancelCustomerAccountReceipt(CustomerAccountReceipt theCustomerAccountReceipt)
 {
     return(CustomerAccountReceiptIntegration.CancelCustomerAccountReceipt(theCustomerAccountReceipt));
 }
 public int InsertCustomerAccountReceipt(CustomerAccountReceipt theCustomerAccountReceipt)
 {
     return(CustomerAccountReceiptIntegration.InsertCustomerAccountReceipt(theCustomerAccountReceipt));
 }
 public decimal GetCustomerAccountBalance(int customerAccountID)
 {
     return(CustomerAccountReceiptIntegration.GetCustomerAccountBalance(customerAccountID));
 }
 public CustomerAccountReceipt GetFirstReceiptByCustomerAccountID(int customerAccountID)
 {
     return(CustomerAccountReceiptIntegration.GetFirstReceiptByCustomerAccountID(customerAccountID));
 }
 public decimal GetCustomerAccountBalanceByDCAccountID(int DCAccountID)
 {
     return(CustomerAccountReceiptIntegration.GetCustomerAccountBalanceByDCAccountID(DCAccountID));
 }
 public List <CustomerAccountReceipt> GetCustomerAccountReceiptsByDCAccountID(int DCAccountID)
 {
     return(CustomerAccountReceiptIntegration.GetCustomerAccountReceiptsByDCAccountID(DCAccountID));
 }
 public List <CustomerAccountReceipt> GetCustomerAccountReceiptsByScrollID(int scrollID)
 {
     return(CustomerAccountReceiptIntegration.GetCustomerAccountReceiptsByScrollID(scrollID));
 }