Example #1
0
 public AccountController(BinmakDbContext context,
                          UserManager <ApplicationUser> userManager,
                          RoleManager <IdentityRole> roleManager,
                          SignInManager <ApplicationUser> signInManager)
 {
     _context       = context;
     _userManager   = userManager;
     _signInManager = signInManager;
     _roleManager   = roleManager;
 }
 public DailyReadingsController(BinmakDbContext context)
 {
     _context = context;
 }
Example #3
0
 public ProductionFlowConfigurationController(BinmakDbContext context)
 {
     _context = context;
 }
Example #4
0
 public Seed(BinmakDbContext context, UserManager <ApplicationUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
Example #5
0
 public AssetNodeService(BinmakDbContext context)
 {
     _context = context;
 }
 public ProductionFlowAnalyticsController(BinmakDbContext context)
 {
     _context = context;
 }
Example #7
0
 public OrganizationService(BinmakDbContext context)
 {
     _context = context;
 }