public async Task <IEnumerable <TipRead> > GetTipsByPlatform(Guid platformId)
        {
            var tipsRead = await _platformService.GetTipsByPlatform(platformId);

            return(tipsRead);
        }