Prizm.Main.Synch.Export.DataExporter.UnmarkPipes C# (CSharp) Method

UnmarkPipes() private method

private UnmarkPipes ( Portion portion ) : void
portion Portion
return void
        private void UnmarkPipes(Portion portion)
        {
            foreach(var p in portion.Pipes)
            {
                p.ToExport = false;
                exportRepo.PipeRepo.SaveOrUpdate(p);
            }
        }