Exemplo n.º 1
0
 // contructor
 public MyProfileController(TablesConection tablesConection, IWebHostEnvironment environment)
 {
     env = environment;
     tables_conection = tablesConection;
     updater          = new UpdaterTable(tablesConection);
     uploader         = new Uploader(env, tablesConection);
 }
Exemplo n.º 2
0
 public Uploader(IWebHostEnvironment env, TablesConection tables_conection)
 {
     this.env = env;
     this.tables_conection = tables_conection;
 }
Exemplo n.º 3
0
        public UpdaterTable(TablesConection tb)

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