Exemple #1
0
        public IActionResult GetGift(bool boy, bool girl)
        {
            var gifts = _giftRepository.GetAllByGender(boy, girl);

            return(Ok(gifts));
        }