public static int GetCompYear(this ONLCompetition comp)
        {
            var dt = comp.GetDateParamNullable(Constants.PDB_COMP_START_DATE);

            if (dt == null || !dt.HasValue)
            {
                return(DateTime.UtcNow.Year);
            }
            else
            {
                return(dt.Value.Year);
            }
        }