public int GetApplicantUserCount(int?userType, int userId, int?companyId)
 {
     try
     {
         return(_packageRepository.GetApplicantUserCount(userType, userId, companyId));
     }
     catch (Exception ex)
     {
         LogError(ex);
         return(0);
     }
 }