using Common; using Common.Model.PennyTest; namespace Repository.PennyTest { public interface IPennyTestRepository { JsonRxResponse SavePennyTestCustomerCertificate(PennyTestCustomerCert cert); string GetBankCode(string bankId); JsonRxResponse VerifyCertificate(string customerId, string certNum); PennyTestStartRequestModel GetPennyTestRequiredData(string customerId); PennyTestStartRequestModel GetPennyTestRequiredData_V4(string customerId); } }