コード例 #1
0
 public Boolean DeleteAuthentication(IAuthenticationSaveRepository authRepository, string idConv)
 {
     return(authRepository.DeleteAuthentication(idConv));
 }
コード例 #2
0
 public async Task SaveValidacionOtp(IAuthenticationSaveRepository authRepository, string resOtp, string idConv)
 {
     await authRepository.SaveValidacionOtp(resOtp, idConv).ConfigureAwait(false);
 }
コード例 #3
0
 public dynamic GetAuthentication(IAuthenticationSaveRepository authRepository, string idConv)
 {
     return(authRepository.GetAuthentication(idConv));
 }
コード例 #4
0
 public async Task SaveAuthentication(IAuthenticationSaveRepository authRepository, string numDoc, string tipoDoc, string token, string idConv)
 {
     await authRepository.SaveAuthentication(numDoc, tipoDoc, token, idConv).ConfigureAwait(false);
 }