Example #1
0
 public AirportService(IAirportRepository airportRepository, IAirportSchemeRepository airportSchemeRepository, ICityService cityService, IUnitOfWork unitOfWork)
 {
     _airportRepository       = airportRepository;
     _airportSchemeRepository = airportSchemeRepository;
     _cityService             = cityService;
     _unitOfWork = unitOfWork;
 }
Example #2
0
 public GateService(IGateRepository gateRepository, IAirportRepository airportRepository, IAirportSchemeRepository airportSchemeRepository, ITerminalRepository terminalRepository, IUnitOfWork unitOfWork)
 {
     _gateRepository          = gateRepository;
     _airportRepository       = airportRepository;
     _airportSchemeRepository = airportSchemeRepository;
     _terminalRepository      = terminalRepository;
     _unitOfWork = unitOfWork;
 }
Example #3
0
 public AirportSchemeService(IAirportSchemeRepository airportSchemeRepository, IUnitOfWork unitOfWork)
 {
     _airportSchemeRepository = airportSchemeRepository;
     _unitOfWork = unitOfWork;
 }