API.DataAccess.MemoryTransitRepository.MemoryTransitRepository C# (CSharp) 메소드

MemoryTransitRepository() 공개 메소드

public MemoryTransitRepository ( string filePath ) : System
filePath string
리턴 System
        public MemoryTransitRepository(string filePath)
        {
            var folder = filePath + "/cache";
            Directory.CreateDirectory(folder);

            _platformTagsPath = folder + "/platformTags.json";
            _schedulePath = folder + "/schedule.json";
            _staticDataPath = folder + "/staticData.json";
        }