Example #1
0
 public void GetAllPotentialUsersWithCount(ref PotentialUserParcel pup, int page, int pageSize, bool?signedUp)
 {
     try
     {
         _pur.GetAllWithCount(ref pup, page, pageSize, signedUp);
     }
     catch (Exception ex)
     {
         Log.Error(ex.Message, ex);
         throw ex;
     }
 }