public AccountController( UserManager <User> userManager, SignInManager <User> signInManager, IEmailSender emailSender, ILogger <AccountController> logger, IDbContextGeneric context) { _userManager = userManager; _signInManager = signInManager; _emailSender = emailSender; _logger = logger; _context = context.GetContext(); }
public DbContextGeneric(DbServiceContext context) { _context = context; }
public UserService(IOptions <AppSettings> appSettings, DbServiceContext context) { _appSettings = appSettings.Value; _context = context; }
public InvoicesController(DbServiceContext context) { _context = context; }
public ClientsController(DbServiceContext context) { _context = context; }
public TransactionService(IDbContextGeneric context) { _context = context.GetContext(); }
public RoleService(IDbContextGeneric context) { _context = context.GetContext(); }