Example #1
0
        FindMissingsInFileService GetModelInstance()
        {
            if (processingService != null)
            {
                return(processingService);
            }

            return(processingService = new FindMissingsInFileService(GetXmlPathsFileServiceInstance(), GetXmlFileServiceInstance()));
        }
Example #2
0
 public FindMissingsInFileServiceTest()
 {
     xmlPathsFileService = new XmlPathsFileService();
     xmlFileService      = new XmlFileService();
     findMissingsService = new FindMissingsInFileService(xmlPathsFileService, xmlFileService);
 }