Ejemplo n.º 1
0
        public void Checkout(string branchName, long revision = -1)
        {
            ClearEverything(currentIFS.GetFullPath());

            foreach (var v in new IncrementalFileSystem(currentIFS.FolderPath, branchName).GetValues(revision))
            {
                taxreturn.SetCellValue(v.Key, v.Value);  //erh what if not string?
            }
        }
Ejemplo n.º 2
0
 public FieldComparer(string comFilePath, string middlewareFilePath, string ifsFolderPath, string ifsFileName)
 {
     fm         = new fileMiddleware(middlewareFilePath);
     currentIFS = new IncrementalFileSystem(ifsFolderPath, ifsFileName);
     fm.addNewFile(currentIFS.GetPath(), currentIFS.GetFullPath());
     taxreturn = new TaxprepT2Com2014V2.Taxprep2014T2Return();
     taxreturn.Open(comFilePath);
 }
Ejemplo n.º 3
0
 public void Branch(string branchName)
 {
     currentIFS = new IncrementalFileSystem(currentIFS.FolderPath, branchName, currentIFS.GetPath());
     fm.addNewFile(currentIFS.GetPath(), currentIFS.GetFullPath());
 }