public ParentController()
 {
     iChart = new ChartDAL();
     iConn  = new ConnectionDAL();
     iProj  = new KBProjectDAL();
 }
 public ConnectionController()
 {
     iConn = new ConnectionDAL();
 }
Exemplo n.º 3
0
 /// <summary>
 /// Instantiate the database preparation data access object.
 /// </summary>
 /// <param name="connectable">The connection object.</param>
 /// <param name="configurationDAL">The configuration data access.</param>
 public DBPrepMySQL(IConnectionDAL connectable, IConfigurationDAL configurationDAL)
 {
     this._connectable      = connectable;
     this._configurationDAL = configurationDAL;
 }
Exemplo n.º 4
0
 /// <summary>
 /// Instantiate the achievement progression data access object.
 /// </summary>
 /// <param name="connectable">The connection object.</param>
 public AchievementProgressionMySQL(IConnectionDAL connectable)
 {
     this._connectable = connectable;
 }
 /// <summary>
 /// Instantiate the achievement data access object.
 /// </summary>
 /// <param name="connectable">The connection object.</param>
 /// <param name="configurationDAL">The configuration data access.</param>
 public AchievementMySQL(IConnectionDAL connectable, IConfigurationDAL configurationDAL)
 {
     this._connectable      = connectable;
     this._configurationDAL = configurationDAL;
 }