public ScheduleServiceMgr(string connectionString) { try { _secheduleServiceDao = new ScheduleServiceDao(connectionString); _dbAccess = DBFactory.getDBAccess(DBType.MySql, connectionString); } catch (Exception ex) { throw new Exception("SecheduleServiceMgr-->SecheduleServiceMgr-->" + ex.Message, ex); } }
public DisableKeywordsMgr(string connectStr) { _dbAccess = DBFactory.getDBAccess(DBType.MySql, connectStr); _dkDao = new DisableKeywordsDao(connectStr); }
public EdmTemplateMgr(string connectionString) { _dbAccess = DBFactory.getDBAccess(DBType.MySql, connectionString); _edmtemplatedao = new EdmTemplateDao(connectionString); }
public DisableKeywordsDao(string connectStr) { _dbAccess = DBFactory.getDBAccess(DBType.MySql, connectStr); this.connectStr = connectStr; }
public ScheduleServiceDao(string connectionstring) { _access = DBFactory.getDBAccess(DBType.MySql, connectionstring); _dbAccess = DBFactory.getDBAccess(DBType.MySql, connectionstring); }
public EdmGroupNewMgr(string connectionString) { _dbAccess = DBFactory.getDBAccess(DBType.MySql, connectionString); _edmgroupdao = new EdmGroupNewDao(connectionString); }