/***************/ /* Costruttore */ /***************/ public clsOfferte(string nomeDB) { string pathDB = Application.StartupPath + "\\" + nomeDB; sqlOfferta = new adoNetSQL(pathDB); }
/***************/ /* Costruttore */ /***************/ public clsScrive(string nomeDB) { string pathDB = Application.StartupPath + "\\" + nomeDB; sqlScrive = new adoNetSQL(pathDB); }
/***************/ /* Costruttore */ /***************/ public clsLibro(string nomeDB) { string pathDB = Application.StartupPath + "\\" + nomeDB; sqlLibri = new adoNetSQL(pathDB); }
/***************/ /* Costruttore */ /***************/ public clsEditori(string nomeDB) { string pathDB = Application.StartupPath + "\\" + nomeDB; sqlEditori = new adoNetSQL(pathDB); }
/***************/ /* Costruttore */ /***************/ public clsReparto(string nomeDB) { string pathDB = Application.StartupPath + "\\" + nomeDB; sqlReparti = new adoNetSQL(pathDB); }