public EventRegistrationController(IiBalekaRepository <EventRegistration> _repo)
 {
     _eventRegRepo = _repo;
 }
Beispiel #2
0
 public EventController(IiBalekaRepository<Event> _repo)
 {
     _eventRepo = _repo;
 }
Beispiel #3
0
 public EventController(IiBalekaRepository <Event> _repo)
 {
     _eventRepo = _repo;
 }
Beispiel #4
0
 public EventRegistrationController(IiBalekaRepository<Event_Registration> _repo)
 {
     _eventRegRepo = _repo;
 }
Beispiel #5
0
 public UserController(IiBalekaRepository<User> _repo)
 {
     _userRepo = _repo;
 }
Beispiel #6
0
 public AthleteController(IiBalekaRepository <Athlete> _repo)
 {
     _athleteRepo = _repo;
 }
Beispiel #7
0
 public ClubController(IiBalekaRepository <Club> _repo)
 {
     _clubRepo = _repo;
 }
Beispiel #8
0
 public AthleteController(IiBalekaRepository<Athlete> _repo)
 {
     _athleteRepo = _repo;
 }
Beispiel #9
0
 public UserController(IiBalekaRepository <User> _repo)
 {
     _userRepo = _repo;
 }
 public ClubMemberController(IiBalekaRepository <Club_Athlete> _repo)
 {
     _clubMemberRepo = _repo;
 }
Beispiel #11
0
 public ClubController(IiBalekaRepository<Club> _repo)
 {
     _clubRepo = _repo;
 }
Beispiel #12
0
 public ClubMemberController(IiBalekaRepository<Club_Athlete> _repo)
 {
     _clubMemberRepo = _repo;
 }