public ApplicationUserStore(EventureDbContext context, IdentityErrorDescriber describer = null)
     : base(context, describer)
 {
 }
Example #2
0
 public DbQueryRunner(EventureDbContext context)
 {
     this.Context = context ?? throw new ArgumentNullException(nameof(context));
 }