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

UnmarkJoints() private method

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