コード例 #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;
 }
コード例 #2
0
ファイル: UsersController.cs プロジェクト: rmyz/Weatley
 public UsersController(WeatleyContext context)
 {
     _context = context;
 }
コード例 #3
0
ファイル: ReportRepository.cs プロジェクト: rmyz/Weatley
 public ReportRepository(WeatleyContext context) : base(context)
 {
 }
コード例 #4
0
 public ActivitiesController(WeatleyContext context)
 {
     _context = context;
 }
コード例 #5
0
ファイル: ProductsController.cs プロジェクト: rmyz/Weatley
 public ProductsController(WeatleyContext context)
 {
     _context = context;
 }
コード例 #6
0
 public ActivityRepository(WeatleyContext context) : base(context)
 {
 }
コード例 #7
0
ファイル: CustomerRepository.cs プロジェクト: rmyz/Weatley
 public CustomerRepository(WeatleyContext context) : base(context)
 {
 }
コード例 #8
0
 public BookedRoomRepository(WeatleyContext context) : base(context)
 {
 }
コード例 #9
0
 public ReportsController(WeatleyContext context, IHubContext <NotificationsPusher> hub)
 {
     _context   = context;
     HubContext = hub;
 }
コード例 #10
0
 public AccountingRepository(WeatleyContext context) : base(context)
 {
 }
コード例 #11
0
 public AccountingsController(WeatleyContext context)
 {
     _context = context;
 }
コード例 #12
0
ファイル: ProductRepository.cs プロジェクト: rmyz/Weatley
 public ProductRepository(WeatleyContext context) : base(context)
 {
 }
コード例 #13
0
ファイル: BookedRoomsController.cs プロジェクト: rmyz/Weatley
 public BookedRoomsController(WeatleyContext context)
 {
     _context = context;
 }
コード例 #14
0
 public HotelRepository(WeatleyContext context) : base(context)
 {
 }
コード例 #15
0
ファイル: CustomersController.cs プロジェクト: rmyz/Weatley
 public CustomersController(WeatleyContext context)
 {
     _context = context;
 }
コード例 #16
0
 public OrderRepository(WeatleyContext context) : base(context)
 {
 }
コード例 #17
0
 public BookingsController(WeatleyContext context)
 {
     _context = context;
 }
コード例 #18
0
 public HotelsController(WeatleyContext context)
 {
     _context = context;
 }
コード例 #19
0
ファイル: BookingRepository.cs プロジェクト: rmyz/Weatley
 public BookingRepository(WeatleyContext context) : base(context)
 {
 }
コード例 #20
0
ファイル: ServiceRepository.cs プロジェクト: rmyz/Weatley
 public ServiceRepository(WeatleyContext context) : base(context)
 {
 }
コード例 #21
0
 public ServicesController(WeatleyContext context)
 {
     _context = context;
 }
コード例 #22
0
 public EntityBaseRepository(WeatleyContext context)
 {
     _context = context;
 }