Beispiel #1
0
 public AuthController(UserManager <User> userManager,
                       SignInManager <User> signInManager,
                       RoleManager <Role> roleManager,
                       IPasswordHasher <User> passwordHasher,
                       IConfiguration configurationRoot,
                       ILogger <AuthController> logger,
                       WeatleyContext context
                       )
 {
     _userManager       = userManager;
     _signInManager     = signInManager;
     _roleManager       = roleManager;
     _logger            = logger;
     _passwordHasher    = passwordHasher;
     _configurationRoot = configurationRoot;
     _context           = context;
 }
Beispiel #2
0
 public UsersController(WeatleyContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public ReportRepository(WeatleyContext context) : base(context)
 {
 }
Beispiel #4
0
 public ActivitiesController(WeatleyContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public ProductsController(WeatleyContext context)
 {
     _context = context;
 }
Beispiel #6
0
 public ActivityRepository(WeatleyContext context) : base(context)
 {
 }
Beispiel #7
0
 public CustomerRepository(WeatleyContext context) : base(context)
 {
 }
Beispiel #8
0
 public BookedRoomRepository(WeatleyContext context) : base(context)
 {
 }
 public ReportsController(WeatleyContext context, IHubContext <NotificationsPusher> hub)
 {
     _context   = context;
     HubContext = hub;
 }
Beispiel #10
0
 public AccountingRepository(WeatleyContext context) : base(context)
 {
 }
Beispiel #11
0
 public AccountingsController(WeatleyContext context)
 {
     _context = context;
 }
Beispiel #12
0
 public ProductRepository(WeatleyContext context) : base(context)
 {
 }
Beispiel #13
0
 public BookedRoomsController(WeatleyContext context)
 {
     _context = context;
 }
Beispiel #14
0
 public HotelRepository(WeatleyContext context) : base(context)
 {
 }
Beispiel #15
0
 public CustomersController(WeatleyContext context)
 {
     _context = context;
 }
Beispiel #16
0
 public OrderRepository(WeatleyContext context) : base(context)
 {
 }
Beispiel #17
0
 public BookingsController(WeatleyContext context)
 {
     _context = context;
 }
Beispiel #18
0
 public HotelsController(WeatleyContext context)
 {
     _context = context;
 }
Beispiel #19
0
 public BookingRepository(WeatleyContext context) : base(context)
 {
 }
Beispiel #20
0
 public ServiceRepository(WeatleyContext context) : base(context)
 {
 }
 public ServicesController(WeatleyContext context)
 {
     _context = context;
 }
Beispiel #22
0
 public EntityBaseRepository(WeatleyContext context)
 {
     _context = context;
 }