Ejemplo n.º 1
0
 public QuotesController(IConfiguration configuration)
 {
     this._configuration = configuration;
     this._objDataHelper = new MySQLGateway(this._configuration.GetConnectionString("Connection"));
 }
Ejemplo n.º 2
0
 public TaxController(IConfiguration configuration, IHostingEnvironment env)
 {
     this._configuration = configuration;
     this._env           = env;
     this._objDataHelper = new MySQLGateway(this._configuration.GetConnectionString("Connection"));
 }
Ejemplo n.º 3
0
 public AccessControlMiddleware(RequestDelegate next, string connectionString)
 {
     this._dB     = new MySQLGateway(connectionString);
     this._helper = new CommonHelper();
     _next        = next;
 }