public TrechoController(VooContext contexto, ITrechoRepository trechoRepositorio, TrechoService trechoService, ILocalRepository localRepository)
 {
     this.contexto          = contexto;
     this.trechoRepositorio = trechoRepositorio;
     this.trechoService     = trechoService;
     this.localRepository   = localRepository;
 }
Esempio n. 2
0
 public TrechoController(ITrechoRepository trechoRepository,
                         TrechoService trechoService, PassagensContext contexto,
                         ILocalRepository localRepository)
 {
     this.trechoRepository = trechoRepository;
     this.trechoService    = trechoService;
     this.localRepository  = localRepository;
     this.contexto         = contexto;
 }
Esempio n. 3
0
 public TrechoController(
     ITrechoRepository trechoRepository,
     ILocalRepository localRepository,
     PassagensAereasContext context,
     IOptions <SecuritySettings> settings)
 {
     this.trechoRepository = trechoRepository;
     this.localRepository  = localRepository;
     this.context          = context;
     this.settings         = settings;
 }
Esempio n. 4
0
 public ReservaController(IReservaRepository reservaRepository, ReservaService reservaService,
                          IOpcionalRepository opcionalRepository, ITrechoRepository trechoRepository,
                          IClasseDeVooRepository classeDeVooRepository, PassagensContext contexto,
                          IUsuarioRepository usuarioRepository)
 {
     this.reservaRepository     = reservaRepository;
     this.reservaService        = reservaService;
     this.opcionalRepository    = opcionalRepository;
     this.trechoRepository      = trechoRepository;
     this.classeDeVooRepository = classeDeVooRepository;
     this.usuarioRepository     = usuarioRepository;
     this.contexto = contexto;
 }
Esempio n. 5
0
 public UsuarioController(
     IUsuarioRepository usuarioRepository,
     ITrechoRepository trechoRepository,
     IReservaRepository reservaRepository,
     IClasseVooRepository classeVooRepository,
     IOpcionalRepository opcionalRepository,
     PassagensAereasContext context,
     IOptions <SecuritySettings> settings)
 {
     this.usuarioRepository   = usuarioRepository;
     this.trechoRepository    = trechoRepository;
     this.classeVooRepository = classeVooRepository;
     this.opcionalRepository  = opcionalRepository;
     this.reservaRepository   = reservaRepository;
     this.context             = context;
     this.settings            = settings;
 }
Esempio n. 6
0
 public TrechoController(ITrechoRepository trechoRepository, TrechoService trechoService, PassagensAereasContext contexto)
 {
     this.trechoRepository = trechoRepository;
     this.trechoService    = trechoService;
     this.contexto         = contexto;
 }