Ejemplo n.º 1
0
 public CreateAccountResponseModel CreateAccount(CreateAccountRequestModel requestModel)
 {
     AuthenCase authenCase = new AuthenCase();
     return authenCase.CreateAccount(requestModel);
 }
Ejemplo n.º 2
0
 public LogInByEmailResponseModel LogInByEmail(LogInByEmailRequestModel requestModel)
 {
     AuthenCase authenCase = new AuthenCase();
     return authenCase.LogInByEmail(requestModel);
 }
Ejemplo n.º 3
0
 public AuthenticatePhoneNumberResponseModel AuthenNumber(AuthenticatePhoneNumberRequestModel requestModel)
 {
     AuthenCase authenCase = new AuthenCase();
     return authenCase.AuthenNumber(requestModel);
 }
Ejemplo n.º 4
0
 public SignUpByEmailResponseModel SignUpByEmail(SignUpByEmailRequestModel requestModel)
 {
     AuthenCase authenCase = new AuthenCase();
     return authenCase.SignUpByEmail(requestModel);
 }