public FacebookUser Get(string facebookId)
 {
     try
     {
         return(_dynamoService.Get <FacebookUser>(facebookId));
     }
     catch (Exception ex)
     { throw ex; }
 }
Beispiel #2
0
 public FullUser Get(string userId)
 {
     return(_dynamoService.Get <FullUser>(userId));
 }
Beispiel #3
0
        public Token Get(string userId, long timeStamp)
        {
            Token t = _dynamoService.Get <Token>(userId, timeStamp);

            return(t);
        }
 public User Get(string userName)
 {
     return(_dynamoService.Get <User>(userName));
 }