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

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

            return(count);
        }
 public static int GetCount(string whereClause)
 {
     tblLeaveDetails tblObj = new tblLeaveDetails();
       int count = tblObj.GetCount(whereClause);
       return count;
 }
 public static int GetCount()
 {
     tblLeaveDetails tblObj = new tblLeaveDetails();
       int count = tblObj.GetCount();
       return count;
 }