public GiftStatusesPage GetAllGifts()
        {
            var deactivatedGifts = _giftRepository.GetDeactivatedGifts().ToList();
            IEnumerable <PendingGift>  pendingGifts  = _giftRepository.GetPendingGifts().ToList();
            IEnumerable <ReservedGift> reservedGifts = _giftRepository.GetConfirmedGifts();

            return(new GiftStatusesPage(deactivatedGifts, pendingGifts, reservedGifts));
        }