Exemple #1
0
 public HireEquipmentController(IHireEquipmentService hireEquipmentService, AuthenticationUserManager authenticationUserManager)
 {
     this.hireEquipmentService      = hireEquipmentService;
     this.authenticationUserManager = authenticationUserManager;
 }
 public BookTableController(IBookTableService bookTableService, AuthenticationUserManager authenticationUserManager)
 {
     this.bookTableService          = bookTableService;
     this.authenticationUserManager = authenticationUserManager;
 }
Exemple #3
0
 public AccountController(AuthenticationUserManager userManager, AuthenticationSignInManager signInManager)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
 }
Exemple #4
0
 //private AuthenticationUserManager authenticationUserManager { get; }
 public ReservationsController(IReservationDiningTableService reservationDiningTableService, AuthenticationUserManager authenticationUserManager)
 {
     this.reservationDiningTableService = reservationDiningTableService;
     this.authenticationUserManager     = authenticationUserManager;
 }