public List <User> GetFollowers(string userId) { try { return(_graphDB.GetFollowers(userId)); } catch (Exception) { throw new FaildToConnectDbException(); } }