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
508 B

1 year ago
  1. using Common;
  2. using Common.Model.PennyTest;
  3. namespace Repository.PennyTest
  4. {
  5. public interface IPennyTestRepository
  6. {
  7. JsonRxResponse SavePennyTestCustomerCertificate(PennyTestCustomerCert cert);
  8. string GetBankCode(string bankId);
  9. JsonRxResponse VerifyCertificate(string customerId, string certNum);
  10. PennyTestStartRequestModel GetPennyTestRequiredData(string customerId);
  11. PennyTestStartRequestModel GetPennyTestRequiredData_V4(string customerId);
  12. }
  13. }