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.
 
 
 

18 lines
508 B

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);
}
}