public async Task <IActionResult> GetAll()
        {
            var result = await _productTypeGroupService.GetAll();

            return(Ok(result));
        }