Esempio n. 1
0
 public Departamento(ApiConfig config)
 {
     this._config       = config;
     this._sQLCmdConfig = new SQLCmdConfig()
     {
         connectioString = this._config.connectionString
     };
 }
Esempio n. 2
0
 public Tienda(ApiConfig config)
 {
     this._config       = config;
     this._sQLCmdConfig = new SQLCmdConfig()
     {
         connectioString = this._config.connectionString
     };
 }
Esempio n. 3
0
 public DBOperation(ISQLCmdConfig appConfiguration)
 {
     this._ISQLCmdConfig = appConfiguration;
     this._tabla         = new DataTable();
 }