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.

17 lines
484 B

1 year ago
  1. using Common;
  2. using Common.Model.PennyTest;
  3. namespace Business.PennyTest
  4. {
  5. public interface IPennyTestBusiness
  6. {
  7. JsonRxResponse SavePennyTestCustomerCertificate(PennyTestCustomerCert cert);
  8. JsonRxResponse RealNameCheck(RealNameRequest req);
  9. JsonRxResponse Start(string user, string reSendCode);
  10. JsonRxResponse VerifyCertificate(PennyCertVerifyRequestModel model);
  11. JsonRxResponse Start_V4(string user, string reSendCode);
  12. }
  13. }