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);
        }