Example #1
0
        public List <ApplicantResumePoco> GetAllApplicantResume()
        {
            EFGenericRepository <ApplicantResumePoco> ApplicantResumeRepo = new EFGenericRepository <ApplicantResumePoco>(false);
            var Logic = new ApplicantResumeLogic(ApplicantResumeRepo);

            return(Logic.GetAll());
        }
Example #2
0
        public List <ApplicantResumePoco> GetAllApplicantResume()
        {
            ApplicantProfileRepository <ApplicantResumePoco> repo = new ApplicantProfileRepository <ApplicantResumePoco>(false);
            ApplicantResumeLogic log = new ApplicantResumeLogic(repo);

            return(log.GetAll());
        }
Example #3
0
        public List <ApplicantResumePoco> GetAllApplicantResume()
        {
            var logic = new ApplicantResumeLogic
                            (new EFGenericRepository <ApplicantResumePoco>(false));

            return(logic.GetAll());
        }
Example #4
0
        public List <ApplicantResumePoco> GetAllApplicantResume()
        {
            EFGenericRepository <ApplicantResumePoco> applicantresumerepo = new EFGenericRepository <ApplicantResumePoco>(false);
            ApplicantResumeLogic _applicantresumelogic = new ApplicantResumeLogic(applicantresumerepo);

            return(_applicantresumelogic.GetAll());
        }
Example #5
0
        public List <ApplicantResumePoco> GetAllApplicantResume()
        {
            List <ApplicantResumePoco> applicantResumePocos = new List <ApplicantResumePoco>();
            var logic = new ApplicantResumeLogic(new EFGenericRepository <ApplicantResumePoco>(false));

            applicantResumePocos = logic.GetAll();
            return(applicantResumePocos);
        }
Example #6
0
        public IHttpActionResult GetAllApplicantResume()
        {
            var applicantResumeList = _logic.GetAll();

            if (applicantResumeList == null)
            {
                return(NotFound());
            }
            return(Ok(applicantResumeList));
        }
        public IHttpActionResult GetAllApplicantResume()
        {
            List <ApplicantResumePoco> poco = _logic.GetAll();

            if (poco == null)
            {
                return(NotFound());
            }
            return(Ok(poco));
        }
        public IHttpActionResult GetallApplicantResume()
        {
            List <ApplicantResumePoco> result = _logic.GetAll();

            if (result == null)
            {
                return(NotFound());
            }
            return(Ok(result));
        }
Example #9
0
        public ActionResult GetAllApplicantResume()
        {
            var poco = _logic.GetAll();

            if (poco == null)
            {
                return(NotFound());
            }

            return(Ok(poco));
        }
 public IHttpActionResult GetAllApplicantResume()
 {
     try
     {
         IEnumerable <ApplicantResumePoco> itemList = _logicObj.GetAll();
         if (itemList != null)
         {
             return(this.Ok(itemList));
         }
         else
         {
             return(this.NotFound());
         }
     }
     catch (Exception e)
     {
         HttpResponseMessage response =
             this.Request.CreateErrorResponse(HttpStatusCode.BadRequest, e);
         throw new HttpResponseException(response);
     }
 }
Example #11
0
        public ActionResult GetAllApplicantResume()
        {
            var applicants = _logic.GetAll();

            if (applicants == null)
            {
                return(NotFound());
            }
            else
            {
                return(Ok(applicants));
            }
        }
        public ActionResult GetApplicationResume()
        {
            List <ApplicantResumePoco> applicantResumes = _logic.GetAll();

            if (applicantResumes == null)
            {
                return(NotFound());
            }
            else
            {
                return(Ok(applicantResumes));
            }
        }
 public IHttpActionResult GetAllApplicantResume()
 {
     try
     {
         List <ApplicantResumePoco> poco = _logic.GetAll();
         if (poco == null)
         {
             return(NotFound());
         }
         return(Ok(poco));
     }
     catch (Exception e)
     {
         return(InternalServerError(e));
     }
 }
Example #14
0
        // GET: ApplicantResume
        public ActionResult Index()
        {
            Guid _userProfileId = (Guid)TempData["Applicant"];

            TempData.Keep();
            ApplicantResumePoco poco = null;
            object _resumeID         = null;

            try {
                _resumeID = (from x in _logic.GetAll() where x.Applicant == _userProfileId select x.Id).FirstOrDefault();
                poco      = _logic.Get((Guid)_resumeID);
            }
            catch { }
            if (poco == null)
            {
                return(RedirectToAction("Create", "ApplicantResume"));
            }
            else
            {
                return(View(poco));
            }
        }
        //private CareerCloudContext db = new CareerCloudContext();

        // GET: ApplicantResume
        public ActionResult Index()
        {
            var applicantResumes = applicantResumeLogic.GetAll(); //db.ApplicantResumes.Include(a => a.ApplicantProfile);

            return(View(applicantResumes.ToList()));
        }
Example #16
0
 public ActionResult GetApplicantResume()
 {
     return(Ok(_logic.GetAll()));
 }
        public IHttpActionResult GetAllApplicantResume()
        {
            List <ApplicantResumePoco> appJobApp = _logic.GetAll();

            return(Ok(appJobApp));
        }
Example #18
0
 public IList <ApplicantResumePoco> GetAllApplicantResumePoco()
 {
     return(_logicApplicantResume.GetAll());
 }
Example #19
0
 public List <ApplicantResumePoco> GetAllApplicantResume()
 {
     return(_rLogic.GetAll());
 }