Example #1
0
 public MantenimientoController(IHabitacionRepository habitacionRepository, SignInManager <UserLogin> signInManager, HoteleriaContext context, UserManager <UserLogin> userManager)
 {
     _context              = context;
     _signInManager        = signInManager;
     _userManager          = userManager;
     _habitacionRepository = habitacionRepository;
 }
 public LimpiezaController(IHabitacionRepository habitacionRepository, SignInManager <UserLogin> signInManager, HoteleriaContext context,
                           UserManager <UserLogin> userManager)
 {
     _habitacionRepository = habitacionRepository;
     _context       = context;
     _signInManager = signInManager;
     _userManager   = userManager;
 }
 public HabitacionController(IHabitacionRepository habitacionRepository,
                             IAsignacionesRepository asignacionesRepository,
                             HoteleriaContext context, UserManager <UserLogin> userManager)
 {
     _context = context;
     _habitacionRepository   = habitacionRepository;
     _asignacionesRepository = asignacionesRepository;
     _userManager            = userManager;
 }
Example #4
0
 public HabitacionService(IHabitacionRepository habitacionRepository, IUnitOfWork unitOfWork)
 {
     _habitacionRepository = habitacionRepository;
     _unitOfWork           = unitOfWork;
 }
 public CheckOutController(IHabitacionRepository habitacionRepository)
 {
     _habitacionRepository = habitacionRepository;
 }
 public SupervisionController(IHabitacionRepository habitacionRepository)
 {
     _habitacionRepository = habitacionRepository;
 }
 public ControlService(IHabitacionRepository habitacionRepository)
 {
     _habitacionRepository = habitacionRepository;
 }
 public HabitacionService(IHabitacionRepository habitacionRepository, IAsignacionesRepository asignacionesRepository)
 {
     _habitacionRepository   = habitacionRepository;
     _asignacionesRepository = asignacionesRepository;
 }