예제 #1
0
 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;
 }
예제 #2
0
 public IdeaRepository(CrowdfundingSystemContext context) : base(context)
 {
 }
 public MoneyTransferRepository(CrowdfundingSystemContext context) : base(context)
 {
 }
예제 #4
0
 public CSOwnerRepository(CrowdfundingSystemContext context) : base(context)
 {
 }