public async Task <IActionResult> GetWholesalerStock(Guid wholesalerId)
        {
            if (!await _wholesalerValidation.WholesalerExists(wholesalerId))
            {
                return(new NotFoundObjectResult("Wholesaler not found"));
            }

            return(new OkObjectResult(await _wholesalerService.GetWholesalerStock(wholesalerId)));
        }