public async Task <IHttpActionResult> Get(Guid shopId)
        {
            var result = await _shopQueryService.GetShopCustomerSubsetReport(shopId);

            return(Ok(result));
        }