public ActionResult <IEnumerable <JobApplicant> > Get()
        {
            try
            {
                var authentication = new Authentication(Request, _userService);

                var result = _jobApplicantService
                             .GetAll(authentication.User)
                             .OrderByDescending(x => x.Job.Id);

                return(Ok(result));
            }
            catch (Exception ex)
            {
                return(UnprocessableEntity(ex));
            }
        }