コード例 #1
0
 public AuthController(UnlaTravelContext context, IMapper mapper, IConfiguration configuration)
 {
     this.context        = context;
     this._mapper        = mapper;
     this._configuration = configuration;
 }
コード例 #2
0
 public VueloController(UnlaTravelContext context, IMapper mapper)
 {
     this.context = context;
     this._mapper = mapper;
 }
コード例 #3
0
 public TipoRegimenController(UnlaTravelContext context, IMapper mapper)
 {
     this.context = context;
     this._mapper = mapper;
 }
コード例 #4
0
 public TipoAlojamientoController(UnlaTravelContext context, IMapper mapper)
 {
     this.context = context;
     this._mapper = mapper;
 }
コード例 #5
0
 public ReservaController(UnlaTravelContext context, IMapper mapper, PasajeroController pasajeroController)
 {
     this.context        = context;
     this._mapper        = mapper;
     _pasajeroController = pasajeroController;
 }
コード例 #6
0
 public ActividadController(UnlaTravelContext context, IMapper mapper)
 {
     this.context = context;
     this._mapper = mapper;
 }