public FPSQLDal(string server, string database, string user, string password) { Connection = GenericFactoryHelper.GetSQLServerConnection(server, database, user, password); }
public FPSQLDal(string server, string database) { Connection = GenericFactoryHelper.GetSQLServerConnection(server, database); }
public static DbConnectionStringBuilder ConnectionStringBuilder(string providerName) { return(GenericFactoryHelper.GetFactory(providerName).CreateConnectionStringBuilder()); }
public FPAccessDal(string dbPath, string password) { Connection = GenericFactoryHelper.GetAccessConnection(dbPath, password); }
public FPSQLCEDal(string dbPath, string password) { Connection = GenericFactoryHelper.GetSQLCeConnection(dbPath, password); }