API.DataAccess.AzureTransitRepository.SetPlatformTags C# (CSharp) Метод

SetPlatformTags() публичный Метод

public SetPlatformTags ( int>.Dictionary platformTags ) : void
platformTags int>.Dictionary
Результат void
        public void SetPlatformTags(Dictionary<int, int> platformTags)
        {
            var platformTagsJson = JsonConvert.SerializeObject(platformTags);
            _storageManager.SetPlatformTags(platformTagsJson);
            _cacheManager.SetPlatformTags(platformTagsJson);
        }