示例#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
 public Uploader(IWebHostEnvironment env, TablesConection tables_conection)
 {
     this.env = env;
     this.tables_conection = tables_conection;
 }
示例#3
0
文件: Updater.cs 项目: Ica001/Act2
        public UpdaterTable(TablesConection tb)

        {
            tables_conection = tb;
        }
示例#4
0
 public RegisterController(TablesConection cs)
 {
     _cs = cs;
 }
示例#5
0
 public Uniqe(TablesConection context)
 {
     this.context = context;
 }
示例#6
0
 public HomeController(ILogger <HomeController> logger, TablesConection tablesConection)
 {
     _logger          = logger;
     table_conections = tablesConection;
     updater          = new UpdaterTable(tablesConection);
 }