示例#1
0
 public InitializeController(
     LotteryManageDbContext context,
     UserManager <AppUser> userManager,
     SignInManager <AppUser> signInManager
     )
 {
     _context       = context;
     _userManager   = userManager;
     _signInManager = signInManager;
 }
示例#2
0
 public UserService(
     UserManager <AppUser> userManager,
     SignInManager <AppUser> signInManager,
     IConfiguration config,
     LotteryManageDbContext context
     )
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _config        = config;
     _context       = context;
 }
 public OwnerBanksController(LotteryManageDbContext context)
 {
     _context = context;
 }
示例#4
0
 public TransactionsController(LotteryManageDbContext context, IHubContext <AccountHub> hub)
 {
     _context = context;
     _hub     = hub;
 }
 public BaoLo_LottoController(LotteryManageDbContext context)
 {
     _context = context;
 }
 public WalletsController(LotteryManageDbContext context)
 {
     _context = context;
 }
示例#7
0
 public ProfitPercentsController(IProfitPercentService profitPercentService,
                                 LotteryManageDbContext context)
 {
     _profitPercentService = profitPercentService;
     _context = context;
 }
 public TransactionHistoriesController(LotteryManageDbContext context)
 {
     _context = context;
 }
示例#9
0
 public Xien_LottoController(LotteryManageDbContext context)
 {
     _context = context;
 }
 public BankCardsController(LotteryManageDbContext context)
 {
     _context = context;
 }