public VenuesController(RaceMeetingManagerContext context)
 {
     _context = context;
 }
Example #2
0
 public MeetingDTOService(RaceMeetingManagerContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public MeetingCategoryDTOService(RaceMeetingManagerContext context)
 {
     this.context = context;
 }
Example #4
0
 public MeetingsController(RaceMeetingManagerContext context, IMeetingDTOService meetingDTOService, IMapper mapper)
 {
     this.context           = context;
     this.meetingDTOService = meetingDTOService;
     this.mapper            = mapper;
 }
 public RaceDTOService(RaceMeetingManagerContext context)
 {
     this.context = context;
 }