Ejemplo n.º 1
0
        public static int GetCount(string whereClause)
        {
            tblEmployee tblObj = new tblEmployee();
            int         count  = tblObj.GetCount(whereClause);

            return(count);
        }
Ejemplo n.º 2
0
        public static int GetCount()
        {
            tblEmployee tblObj = new tblEmployee();
            int         count  = tblObj.GetCount();

            return(count);
        }
Ejemplo n.º 3
0
 public static int GetCount(string whereClause)
 {
     tblEmployee tblObj = new tblEmployee();
     int count = tblObj.GetCount(whereClause);
     return count;
 }
Ejemplo n.º 4
0
 public static int GetCount()
 {
     tblEmployee tblObj = new tblEmployee();
     int count = tblObj.GetCount();
     return count;
 }