You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
276 B

1 year ago
  1. using Common;
  2. using Common.Model;
  3. namespace Business.TrustDoc
  4. {
  5. public interface ITrustDocBusiness
  6. {
  7. JsonRxResponse Webhook(TrustDocModel doc);
  8. JsonRxResponse CompareData(TrustDocRequest request, string id, string user, string customerId);
  9. }
  10. }