Esempio n. 1
0
 // contructor
 public MyProfileController(TablesConection tablesConection, IWebHostEnvironment environment)
 {
     env = environment;
     tables_conection = tablesConection;
     updater          = new UpdaterTable(tablesConection);
     uploader         = new Uploader(env, tablesConection);
 }
Esempio n. 2
0
 public HomeController(ILogger <HomeController> logger, TablesConection tablesConection)
 {
     _logger          = logger;
     table_conections = tablesConection;
     updater          = new UpdaterTable(tablesConection);
 }