public Favorite getFavorite(string Id) { try { return(_favRepo.GetFavorite(Id)); } catch (Exception ex) { throw ex; } }
public IActionResult GetFavorite(int userId, int postId) { return(Ok(_favoritesRepository.GetFavorite(userId, postId))); }