Example #1
0
 public AttendingGroupEventController()
 {
     groupEventRepository          = new GroupEventRepository(dataContext);
     userRepository                = new UserRepository(dataContext);
     attendingGroupEventRepository = new AttendingGroupEventRepository(dataContext);
 }
Example #2
0
 public GroupEventController()
 {
     groupEventRepository = new GroupEventRepository(dataContext);
     groupRepository      = new GroupRepository(dataContext);
     userRepository       = new UserRepository(dataContext);
 }