Ejemplo n.º 1
0
 public ProductItemMapExcelMgr(string connectionString)
 {
     _productItemMapMgr = new ProductItemMapMgr(connectionString);
     _productItemMapDao = new ProductItemMapDao(connectionString);
     _productItemMgr = new ProductItemMgr(connectionString);
     _productItemDao = new ProductItemDao(connectionString);
     _callerMgr = new CallerMgr(connectionString);
     _priceMasterMgr = new PriceMasterMgr(connectionString);
     _access = DBAccess.DBFactory.getDBAccess(DBType.MySql, connectionString);
 }
Ejemplo n.º 2
0
 public ProductItemMapMgr(string connectionString)
 {
     this.connectionString = connectionString;
     _channelDao = new BLL.gigade.Dao.ChannelDao(connectionString);
     _ProductItemMapDao = new Dao.ProductItemMapDao(connectionString);
     _mySqlDao = new MySqlDao(connectionString);
     _mapSetDao = new ProductMapSetDao(connectionString);
     _channelorderDao = new ChannelOrderDao(connectionString);
     _pricemasterDao = new PriceMasterDao(connectionString);
 }