public ExternalAuthController(IOptions <FacebookAuthSettings> fbAuthSettingsAccessor, UserManager <User> userManager, CrowdfundingSystemContext context, IJwtFactory jwtFactory, IOptions <JwtIssuerOptions> jwtOptions) { fbAuthSettings = fbAuthSettingsAccessor.Value; this.userManager = userManager; this.context = context; this.jwtFactory = jwtFactory; this.jwtOptions = jwtOptions.Value; }
public IdeaRepository(CrowdfundingSystemContext context) : base(context) { }
public MoneyTransferRepository(CrowdfundingSystemContext context) : base(context) { }
public CSOwnerRepository(CrowdfundingSystemContext context) : base(context) { }