public static List<Country> findList(string @where, params object[] @params) { CountryDBMapper dbm = new CountryDBMapper(); return dbm.findList(@where, @params); }
public static List <Country> findList(string @where, List <IDataParameter> listOfIParams) { CountryDBMapper dbm = new CountryDBMapper(); return(dbm.findList(@where, listOfIParams)); }
public static List<Country> findList(string @where, List<IDataParameter> listOfIParams) { CountryDBMapper dbm = new CountryDBMapper(); return dbm.findList(@where,listOfIParams); }
public static List <Country> findList(string @where, params object[] @params) { CountryDBMapper dbm = new CountryDBMapper(); return(dbm.findList(@where, @params)); }