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

using Common;
using Common.Model.PennyTest;
namespace Business.PennyTest
{
public interface IPennyTestBusiness
{
JsonRxResponse SavePennyTestCustomerCertificate(PennyTestCustomerCert cert);
JsonRxResponse RealNameCheck(RealNameRequest req);
JsonRxResponse Start(string user, string reSendCode);
JsonRxResponse VerifyCertificate(PennyCertVerifyRequestModel model);
JsonRxResponse Start_V4(string user, string reSendCode);
}
}