コード例 #1
0
 public AdminController()
 {
     db = new QuotationsContext();
     manager = new UserManager<ApplicationUser>(new UserStore<ApplicationUser>(db));
     users = new ApplicationDbContext();
 }
コード例 #2
0
 public QuotationsApiController()
 {
     db = new QuotationsContext();
     userManager = new UserManager<ApplicationUser>(new UserStore<ApplicationUser>(db));
 }
コード例 #3
0
 public CategoryCreationHelper()
 {
     db = new QuotationsContext();
 }