Exemplo n.º 1
0
 protected internal override void RemoveTwoFactorAuthToken(TwoFactorAuthToken item)
 {
     TwoFactorAuthTokenCollection.Remove((TTwoFactorAuthToken)item);
 }
Exemplo n.º 2
0
 protected internal override void AddTwoFactorAuthToken(TwoFactorAuthToken item)
 {
     TwoFactorAuthTokenCollection.Add(new TTwoFactorAuthToken {
         ParentKey = this.Key, Token = item.Token, Issued = item.Issued
     });
 }
Exemplo n.º 3
0
 public void RemoveTwoFactorAuthToken(TwoFactorAuthToken item)
 {
     TwoFactorAuthTokenCollection.Remove((TwoFactorAuthToken)item);
 }
 protected internal override void AddTwoFactorAuthToken(TwoFactorAuthToken item)
 {
     TwoFactorAuthTokenCollection.Add(new RelationalTwoFactorAuthToken {
         UserAccountID = this.ID, Token = item.Token, Issued = item.Issued
     });
 }
Exemplo n.º 5
0
 public void AddTwoFactorAuthToken(TwoFactorAuthToken item)
 {
     TwoFactorAuthTokenCollection.Add(new TwoFactorAuthToken {
         Token = item.Token, Issued = item.Issued, UserId = this.ID
     });
 }