API.DataAccess.AzureTransitRepository.SetPlatformTags C# (CSharp) Method

SetPlatformTags() public method

public SetPlatformTags ( int>.Dictionary platformTags ) : void
platformTags int>.Dictionary
return void
        public void SetPlatformTags(Dictionary<int, int> platformTags)
        {
            var platformTagsJson = JsonConvert.SerializeObject(platformTags);
            _storageManager.SetPlatformTags(platformTagsJson);
            _cacheManager.SetPlatformTags(platformTagsJson);
        }