public async Task <Result <List <GetAllBrandsCachedResponse> > > Handle(GetAllBrandsCachedQuery request, CancellationToken cancellationToken)
        {
            var brandList = await _brandCache.GetCachedListAsync();

            var mappedBrands = _mapper.Map <List <GetAllBrandsCachedResponse> >(brandList);

            return(Result <List <GetAllBrandsCachedResponse> > .Success(mappedBrands));
        }