Esempio n. 1
0
 public static DataTable GetParticipantsForPromotion(Event ev)
 {
     return(EventRepository.GetParticipantsForPromotion(ev.ID));
 }
Esempio n. 2
0
 public static int CreateNewTeam(Event e, Team t)
 {
     return(EventRepository.CreateNewTeam(e, t));
 }
Esempio n. 3
0
 public static DataTable GetRegisteredParticipants(Event ev, int level)
 {
     return(EventRepository.GetRegisteredParticipants(ev, level));
 }
Esempio n. 4
0
 public static int GetCurrentLevel(int eventID)
 {
     return(EventRepository.GetCurrentLevel(eventID));
 }
Esempio n. 5
0
 public static bool PromoteParticipants(List <int> participantID, Event ev)
 {
     return(EventRepository.PromoteParticipants(participantID, ev));
 }