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