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

Puts a dictionary that takes a PlatformNo (5-digit number) to PlatformTag (3-digit number).
public SetPlatformTags ( string platformTagsJson ) : void
platformTagsJson string
Результат void
        public void SetPlatformTags(Dictionary <int, int> platformTags)
        {
            var platformTagsJson = JsonConvert.SerializeObject(platformTags);

            _storageManager.SetPlatformTags(platformTagsJson);
            _cacheManager.SetPlatformTags(platformTagsJson);
        }