コード例 #1
0
        public static PassCollection LoadFromFile(string path)
        {
            IFileModule fileModule = new FileModule.FileModule();

            return(fileModule.OpenFile(path));
        }
コード例 #2
0
        public static bool SaveFile(string path, IDataModule passCollection, FileType fileType)
        {
            IFileModule fileModule = new FileModule.FileModule(fileType);

            return(fileModule.SaveFile(path, passCollection));
        }