ActivEarth.Server.Service.Competition.ContestManager.GetContest C# (CSharp) Метод

GetContest() публичный статический Метод

Retrieves a Contest based on its ID.
public static GetContest ( int id, bool loadTeams, bool loadTeamMembers ) : Contest
id int ID of the Contest to be retrieved.
loadTeams bool
loadTeamMembers bool
Результат ActivEarth.Objects.Competition.Contests.Contest
        public static Contest GetContest(int id, bool loadTeams, bool loadTeamMembers)
        {
            return ContestDAO.GetContestFromContestId(id, loadTeams, loadTeamMembers);
        }