Example #1
0
 public MeetingCategoriesController(MeetingSampleWebAPIContext context)
 {
     _context = context;
 }
 public MeetingService(MeetingSampleWebAPIContext context)
 {
     this.context = context;
 }
 public VenuesController(MeetingSampleWebAPIContext context, IVenueService venueService, IMapper mapper)
 {
     this.context      = context;
     this.venueService = venueService;
     this.mapper       = mapper;
 }
Example #4
0
 public MeetingsController(MeetingSampleWebAPIContext context, IMeetingService meetingService, IMapper mapper)
 {
     this.context        = context;
     this.meetingService = meetingService;
     this.mapper         = mapper;
 }
 public RacesController(MeetingSampleWebAPIContext context, IRaceService raceService, IMapper mapper)
 {
     this.context     = context;
     this.raceService = raceService;
     this.mapper      = mapper;
 }
 public StatesController(MeetingSampleWebAPIContext context)
 {
     this.context = context;
 }