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

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

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