Beispiel #1
0
 public ParticipatantsController(MvcEpfContext context)
 {
     _context = context;
 }
 public EventsController(MvcEpfContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public EventParticipantService(MvcEpfContext context) // context 配置
 {
     _context = context;
 }
 public AdministratorsController(MvcEpfContext context)
 {
     _context             = context;
     administratorService = new AdministratorService(context);
 }
 public PeopleController(MvcEpfContext context)
 {
     _context = context;
 }
Beispiel #6
0
 public SponsorsController(MvcEpfContext context)
 {
     _context = context;
 }
Beispiel #7
0
 public ParticipantService(MvcEpfContext context)
 {
     _context = context;
 }
 public AdministratorService(MvcEpfContext context)
 {
     _context = context;
 }
 public AdministratorsController(MvcEpfContext context)
 {
     _context = context;
 }
Beispiel #10
0
 public ParticipantsController(MvcEpfContext context)
 {
     _context           = context;
     participantService = new ParticipantService(context);
 }
Beispiel #11
0
 public EventsController(MvcEpfContext context)
 {
     _context     = context;
     eventService = new EventService(context);
 }
 public SponsorsController(MvcEpfContext context)
 {
     _context    = context;
     sponService = new SponsorService(context);
 }
Beispiel #13
0
 public SponsorService(MvcEpfContext context)
 {
     _context = context;
 }