Example #1
0
        public List <CompetitionDto> ListCompetitionsToInscribeObject(AthleteDto athlete)
        {
            var competitions = new CompetitionsToInscribeLogic(ref _conn, athlete);

            competitions.Execute();
            return(competitions.Competitions);
        }
Example #2
0
        public DataTable ListCompetitionsToInscribe(AthleteDto athlete)
        {
            var competitions = new CompetitionsToInscribeLogic(ref _conn, athlete);

            competitions.Execute();
            return(competitions.Table);
        }