public StatisticsController(TachzukanitDbContext context)
 {
     _context = context;
     table.Columns.Add("Method");
     table.Columns.Add("RoomNum", typeof(double));
     table.Columns.Add("Month", typeof(double));
     table.Columns.Add("Location", typeof(double));
 }
Beispiel #2
0
 public HomeController(TachzukanitDbContext context)
 {
     _context = context;
 }
 public ApartmentsController(TachzukanitDbContext context, IHostingEnvironment e)
 {
     _context = context;
     he       = e;
 }
Beispiel #4
0
 public MalfunctionsController(TachzukanitDbContext context, IHostingEnvironment e)
 {
     _context = context;
     he       = e;
 }
Beispiel #5
0
 public UsersController(TachzukanitDbContext context, UserManager <User> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }