Advertisement
Guest User

Untitled

a guest
May 20th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1.  
  2.  
  3. /// <summary>
  4. /// Returns a value indicating whether a payable exists that matches the given criteria
  5. /// </summary>
  6. /// <param name="invoiceId">The id of the invoice to check</param>
  7. /// <param name="bankId">The bank from which the payment should be made</param>
  8. /// <param name="state">The state of the payable</param>
  9. /// <param name="context">The context to execute this method in</param>
  10. /// <returns></returns>
  11. public static void BeginExists(string invoiceId, string bankId, PayableState state, EventHandler<DataPortalResult<bool>> handler, AdministrationContext context = null)
  12. {
  13. DoBeginExists(new PayableCriteria(invoiceId, bankId, state, context), handler);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement