public IActionResult GetGift(bool boy, bool girl) { var gifts = _giftRepository.GetAllByGender(boy, girl); return(Ok(gifts)); }