Ejemplo n.º 1
0
 public bool IsUserFollowUser(string SourceUserId, string targetUserId)
 {
     try
     {
         return(_graphDB.IsFollow(SourceUserId, targetUserId));
     }
     catch (Exception)
     {
         throw new FaildToConnectDbException();
     }
 }