示例#1
0
        public async Task <bool> CreateWishlist(WishlistCreateDTO dto)
        {
            var rao = _mapper.Map <WishlistCreateRAO>(dto);

            if (await _repository.CreateWishlist(rao))
            {
                return(true);
            }

            throw new NotImplementedException();
        }