Prizm.Main.Synch.Export.DataExporter.UnmarkJoints C# (CSharp) Méthode

UnmarkJoints() private méthode

private UnmarkJoints ( Portion portion ) : void
portion Portion
Résultat void
        private void UnmarkJoints(Portion portion)
        {
            foreach(var j in portion.Joints)
            {
                j.ToExport = false;
                exportRepo.JointRepo.SaveOrUpdate(j);
            }
        }