public void CopyTo(MLifter.DAL.Tools.ICopy target, CopyToProgress progressDelegate)
        {
            IStatistics targetStatistics = target as IStatistics;

            if (targetStatistics != null)
            {
                StatisticsHelper.Copy(this as IStatistics, targetStatistics, progressDelegate);
            }
        }