Example #1
0
 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));
        }
Example #3
0
 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));
        }