public async Task <ActionResult <IEnumerable <PlatformRead> > > GetPlatforms()
        {
            var platformReadDtos = await _platformService.GetPlatforms();

            return(Ok(platformReadDtos));
        }