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