public static List<EmployeeEvaluation> findList(string @where, List<IDataParameter> listOfIParams)
 {
     EmployeeEvaluationDBMapper dbm = new EmployeeEvaluationDBMapper();
     return dbm.findList(@where,listOfIParams);
 }
Example #2
0
        public static List <EmployeeEvaluation> findList(string @where, List <IDataParameter> listOfIParams)
        {
            EmployeeEvaluationDBMapper dbm = new EmployeeEvaluationDBMapper();

            return(dbm.findList(@where, listOfIParams));
        }
 public static List<EmployeeEvaluation> findList(string @where, params object[] @params)
 {
     EmployeeEvaluationDBMapper dbm = new EmployeeEvaluationDBMapper();
     return dbm.findList(@where, @params);
 }
Example #4
0
        public static List <EmployeeEvaluation> findList(string @where, params object[] @params)
        {
            EmployeeEvaluationDBMapper dbm = new EmployeeEvaluationDBMapper();

            return(dbm.findList(@where, @params));
        }