示例#1
0
 public TicketServices(BookingCarDbContext context, IRelatedPeopleServices relatedPeopleServices,
                       ILocationServices locationServices, IParticipantServices participantServices) : base(context)
 {
     _relatedPeopleServices = relatedPeopleServices;
     _locationServices      = locationServices;
     _participantServices   = participantServices;
 }
示例#2
0
 public LocationServices(BookingCarDbContext context, IParticipantServices participantServices) : base(context)
 {
     _participantServices = participantServices;
 }
 public PACEServiceController(IParticipantServices participantServices)
 {
     _ParticipantServices = participantServices;
 }