Beispiel #1
0
 public AirhostessesController(
     IAirhostessService airhostessesService,
     IValidator <AirhostessModel> airhostessValidator
     )
 {
     _airhostessesService = airhostessesService;
     _airhostessValidator = airhostessValidator;
 }
Beispiel #2
0
 public CrewService(
     IUnitOfWork unitOfWork,
     IPilotService pilotService,
     IAirhostessService airhostessService
     )
     : base(unitOfWork)
 {
     this._pilotService      = pilotService;
     this._airhostessService = airhostessService;
 }
Beispiel #3
0
 public CrewsController(
     ICrewService crewService,
     IAirhostessService airhostessesService,
     IDepartureService departureService,
     IValidator <CrewInputModel> crewInputModelValidator
     )
 {
     _airhostessesService     = airhostessesService;
     _crewService             = crewService;
     _departureService        = departureService;
     _crewInputModelValidator = crewInputModelValidator;
 }