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