public ActivitiesController(ElcomDb context)
 {
     _context = context;
 }
Example #2
0
 public HomeController(ElcomDb context)
 {
     _context = context;
 }
Example #3
0
 public NodesController(ElcomDb context)
 {
     _context = context;
 }
 public ProductCategoriesController(ElcomDb context)
 {
     _context = context;
 }
Example #5
0
 public AccountsController(UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager, ElcomDb context)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _context       = context;
 }
Example #6
0
 public ProductsController(ElcomDb context)
 {
     _context = context;
 }
Example #7
0
 public StocksController(ElcomDb context)
 {
     _context = context;
 }
Example #8
0
 public StockLocationsController(ElcomDb context)
 {
     _context = context;
 }