Example #1
0
 public AuthService(BulkDbContext db, UserManager <IdentityUser> userManager, SignInManager <IdentityUser> signInManager, IConfiguration configuration)
 {
     this.db            = db;
     this.userManager   = userManager;
     this.signInManager = signInManager;
     this.configuration = configuration;
 }
Example #2
0
 public BidService(BulkDbContext db)
 {
     this.db = db;
 }
Example #3
0
 public ProductService(BulkDbContext db)
 {
     this.db = db;
 }
Example #4
0
 public DiscountSchemeService(BulkDbContext db)
 {
     this.db = db;
 }