/// <summary> /// Getting all the data regarding Job Posts Details /// </summary> /// <returns></returns> public IEnumerable <NewJobPosts> GetAll() { try { return(usertableRepository.GetAll()); } catch (Exception) { throw; } }
/// <summary> /// Getting all the data regarding Job Posts Details /// </summary> /// <returns></returns> public IEnumerable <NewJobPosts> GetAll() { return(usertableRepository.GetAll()); }