private async Task ValidateManufacturerOrThrowAsync(Guid id)
 {
     if (!await _manufacturerRepository.AnyAsync(id))
     {
         throw new ManufacturerNotFoundException(
                   $"Manufacturer with given primary key: '{id}' has not been found.");
     }
 }