Exemplo n.º 1
0
        XmlPathsFileService GetXmlPathsFileServiceInstance()
        {
            if (xmlPathsFileService == null)
            {
                xmlPathsFileService = new XmlPathsFileService();
            }

            return(xmlPathsFileService);
        }
 public XmlPathsFileServiceTest()
 {
     xmlPathsFileService = new XmlPathsFileService();
     xmlPathsFile        = xmlPathsFileService.LoadXmlPathsFile(xmlPathsFileName01);
 }
Exemplo n.º 3
0
 public FindMissingsInFileServiceTest()
 {
     xmlPathsFileService = new XmlPathsFileService();
     xmlFileService      = new XmlFileService();
     findMissingsService = new FindMissingsInFileService(xmlPathsFileService, xmlFileService);
 }
Exemplo n.º 4
0
 public FindMissingsInFileService(XmlPathsFileService xmlPathsFileService, XmlFileService xmlFileService)
 {
     _errMsg = string.Empty;
     this.xmlPathsFileService = xmlPathsFileService;
     this.xmlFileService      = xmlFileService;
 }