示例#1
0
        private static void ShowParticipants()
        {
            var service = new ParticipantService(new ParticipantRepository());

            foreach (var item in service.Get(0, 5))
            {
                Console.WriteLine($"{item.Id};{item.FIO};{item.Birthdate.ToShortDateString()};{item.Email};{item.Phone}");
            }
        }
 public List <Participant> Get() =>
 _participantService.Get();