public List <RecordLite> MakeRecords()
        {
            List <RecordLite> res = new List <RecordLite>();

            if (BlueAView.IsRecording)
            {
                res.Add(BlueAView.MakeRecord());
            }
            if (BlueBView.IsRecording)
            {
                res.Add(BlueBView.MakeRecord());
            }
            if (BlueCView.IsRecording)
            {
                res.Add(BlueCView.MakeRecord());
            }
            if (RedAView.IsRecording)
            {
                res.Add(RedAView.MakeRecord());
            }
            if (RedBView.IsRecording)
            {
                res.Add(RedBView.MakeRecord());
            }
            if (RedCView.IsRecording)
            {
                res.Add(RedCView.MakeRecord());
            }

            return(res);
        }
 public void UpdateRatingViewsMatch(Match m)
 {
     BlueAView.SetMatchContext(m);
     BlueBView.SetMatchContext(m);
     BlueCView.SetMatchContext(m);
     RedAView.SetMatchContext(m);
     RedBView.SetMatchContext(m);
     RedCView.SetMatchContext(m);
 }