コード例 #1
0
 // contructor
 public MyProfileController(TablesConection tablesConection, IWebHostEnvironment environment)
 {
     env = environment;
     tables_conection = tablesConection;
     updater          = new UpdaterTable(tablesConection);
     uploader         = new Uploader(env, tablesConection);
 }
コード例 #2
0
ファイル: HomeController.cs プロジェクト: Ica001/Act2
 public HomeController(ILogger <HomeController> logger, TablesConection tablesConection)
 {
     _logger          = logger;
     table_conections = tablesConection;
     updater          = new UpdaterTable(tablesConection);
 }