Beispiel #1
0
 public AdministrationController(RoleManager <IdentityRole> roleManager, UserManager <ApplicationUser> userManager, IConfiguration configuration, ESBookshopContext context)
 {
     this.roleManager = roleManager;
     this.userManager = userManager;
     _configuration   = configuration;
     _context         = context;
 }
Beispiel #2
0
 public ApplicationUserController(IOptions <TwilioVerifySettings> settings, IConfiguration configuration, UserManager <ApplicationUser> userManager, ESBookshopContext context, RoleManager <IdentityRole> roleManager)
 {
     _userManager   = userManager;
     _roleManager   = roleManager;
     _context       = context;
     _configuration = configuration;
     _settings      = settings.Value;
     resView        = "Error";
 }
 public ExternalController(
     UserManager <ApplicationUser> userManager,
     SignInManager <ApplicationUser> signInManager,
     IIdentityServerInteractionService interaction,
     IClientStore clientStore,
     IEventService events,
     ILogger <ExternalController> logger,
     IConfiguration configuration,
     ESBookshopContext context)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _interaction   = interaction;
     _clientStore   = clientStore;
     _events        = events;
     _logger        = logger;
     _context       = context;
     _client        = new HttpClient();
     _configuration = configuration;
 }
Beispiel #4
0
 public OrdersController(ESBookshopContext context)
 {
     _context = context;
 }
 public StockHistoriesController(ESBookshopContext context)
 {
     _context = context;
 }
 public RanksController(ESBookshopContext context)
 {
     _context = context;
 }
Beispiel #7
0
 public EditorsController(ESBookshopContext context)
 {
     _context = context;
 }
 public PaymentsController(ESBookshopContext context)
 {
     _context = context;
 }
Beispiel #9
0
 public CowritersController(ESBookshopContext context)
 {
     _context = context;
 }
 public AppreciationsController(ESBookshopContext context)
 {
     _context = context;
 }
 public CustomersController(ESBookshopContext context)
 {
     _context = context;
 }
Beispiel #12
0
 public AspNetUserRolesController(ESBookshopContext context)
 {
     _context = context;
 }
 public GenresController(ESBookshopContext context)
 {
     _context = context;
 }
 public ShoppingCartsController(ESBookshopContext context)
 {
     _context = context;
 }
 public DashboardController(ESBookshopContext context)
 {
     _context = context;
 }
 public CategoriesController(ESBookshopContext context)
 {
     _context = context;
 }
 public LineItemsController(ESBookshopContext context)
 {
     _context = context;
 }
Beispiel #18
0
 public AuthorsController(ESBookshopContext context)
 {
     _context = context;
 }
 public ReviewsController(ESBookshopContext context)
 {
     _context = context;
 }
 public WishlistsController(ESBookshopContext context)
 {
     _context = context;
 }