Exemplo n.º 1
0
        public ActionResult Index()
        {
            Guid _userProfileId = (Guid)TempData["Applicant"];

            TempData.Keep();
            List <ApplicantEducationPoco> pocos = new List <ApplicantEducationPoco>();
            object _educationID = null;

            try
            {
                _educationID = (from x in _logic.GetAll() where x.Applicant == _userProfileId select x.Id).FirstOrDefault();
                pocos        = _logic.GetAll().Where <ApplicantEducationPoco> (T => T.Applicant == _userProfileId).ToList();
            }
            catch { }
            finally { }

            if (pocos == null)
            {
                return(RedirectToAction("Create", "ApplicantEducation"));
            }
            else
            {
                return(View(pocos));
            }
        }
        //private CareerCloudContext db = new CareerCloudContext();

        // GET: ApplicantEducation
        public ActionResult Index()
        {
            //var applicantEducations = db.ApplicantEducations.Include(a => a.ApplicantProfile);
            //return View(applicantEducations.ToList());
            var applicantEducations = applicantEducationLogic.GetAll();

            return(View(applicantEducations));
        }
Exemplo n.º 3
0
 // GET: ApplicantEducations
 public ActionResult Index(Guid?Id)
 {
     if (Id != null)
     {
         var apEdu = Logic.GetAll().Where(a => a.Applicant == Id);
         //var applicantEducations = db.ApplicantEducations.Where(a => a.Applicant == Id);//.Include(a => a.ApplicantProfile);
         //return View(applicantEducations.ToList());
         return(View(apEdu.ToList()));
     }
     else
     {
         var applicantEducations = Logic.GetAll();                //db.ApplicantEducations.Include(a => a.ApplicantProfile);
         return(View(applicantEducations.ToList()));
     }
 }
Exemplo n.º 4
0
        public List <ApplicantEducationPoco> GetAllApplicantEducation()
        {
            EFGenericRepository <ApplicantEducationPoco> ApplicantEducationRepo = new EFGenericRepository <ApplicantEducationPoco>(false);
            var Logic = new ApplicantEducationLogic(ApplicantEducationRepo);

            return(Logic.GetAll());
        }
Exemplo n.º 5
0
        public List <ApplicantEducationPoco> GetAllApplicantEducation()
        {
            ApplicantProfileRepository <ApplicantEducationPoco> repo = new ApplicantProfileRepository <ApplicantEducationPoco>(false);
            ApplicantEducationLogic log = new ApplicantEducationLogic(repo);

            return(log.GetAll());
        }
Exemplo n.º 6
0
        public List <ApplicantEducationPoco> GetAllApplicantEducation()
        {
            var logic = new ApplicantEducationLogic
                            (new EFGenericRepository <ApplicantEducationPoco>(false));

            return(logic.GetAll());
        }
Exemplo n.º 7
0
        public List <ApplicantEducationPoco> GetAllApplicantEducation()
        {
            EFGenericRepository <ApplicantEducationPoco> applicanteducationrepo = new EFGenericRepository <ApplicantEducationPoco>(false);
            ApplicantEducationLogic _applicanteducationlogic = new ApplicantEducationLogic(applicanteducationrepo);

            return(_applicanteducationlogic.GetAll());
        }
Exemplo n.º 8
0
        public List <ApplicantEducationPoco> GetAllApplicantEducation()
        {
            List <ApplicantEducationPoco> applicantEducationPocos = new List <ApplicantEducationPoco>();
            var logic = new ApplicantEducationLogic(new EFGenericRepository <ApplicantEducationPoco>(false));

            applicantEducationPocos = logic.GetAll();
            return(applicantEducationPocos);
        }
Exemplo n.º 9
0
        public IHttpActionResult GetAllApplicantEducation()
        {
            var appEducationList = _logic.GetAll();

            if (appEducationList == null)
            {
                return(NotFound());
            }
            return(Ok(appEducationList));
        }
Exemplo n.º 10
0
        public IHttpActionResult GetAllApplicantEducation()
        {
            List <ApplicantEducationPoco> applicantEducations = _logic.GetAll();

            if (applicantEducations == null)
            {
                return(NotFound());
            }
            return(Ok(applicantEducations));
        }
        public IHttpActionResult GetallApplicantEducation()
        {
            List <ApplicantEducationPoco> result = _logic.GetAll();

            if (result == null)
            {
                return(NotFound());
            }
            return(Ok(result));
        }
        public ActionResult GetAllApplicantEducation()
        {
            List <ApplicantEducationPoco> pocos = _logic.GetAll();

            if (pocos == null)
            {
                return(NotFound());
            }
            return(Ok(pocos));
        }
        public IHttpActionResult GetAllApplicantEducation()
        {
            var applicants = _logic.GetAll();

            if (applicants == null)
            {
                NotFound();
            }
            return(Ok(applicants));
        }
Exemplo n.º 14
0
        public override Task <ApplicantEducations> GetApplicantEducations(Empty request, ServerCallContext context)
        {
            ApplicantEducations           CollectionofApplicantEducation = new ApplicantEducations();
            List <ApplicantEducationPoco> pocos = _logic.GetAll();

            foreach (ApplicantEducationPoco poco in pocos)
            {
                CollectionofApplicantEducation.AppEdus.Add(FromPOCO(poco));
            }
            return(Task.FromResult <ApplicantEducations>(CollectionofApplicantEducation));
        }
        public IHttpActionResult GetApplicantEducation()
        {
            var getAll = _logic.GetAll();

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

            return(Ok(getAll));
        }
        public ActionResult GetAllApplicantEducation()
        {
            var AllApplicants = _logic.GetAll();

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

            return(Ok(AllApplicants));
        }
Exemplo n.º 17
0
        public override Task <ApplicantEducationList> GetAllApplicantEducation(Empty request, ServerCallContext context)
        {
            ApplicantEducationList        list  = new ApplicantEducationList();
            List <ApplicantEducationPoco> pocos = logic.GetAll();

            foreach (var poco in pocos)
            {
                list.AppEdus.Add(FromPoco(poco));
            }
            return(Task.FromResult(list));
        }
        public override Task <ApplicantEducations> GetApplicantEducations(Empty request, ServerCallContext context)
        {
            ApplicantEducations           edus  = new ApplicantEducations();
            List <ApplicantEducationPoco> pocos = _logic.GetAll();

            foreach (ApplicantEducationPoco poco in pocos)
            {
                edus.ApplicationEducarionReplies.Add(FromPoco(poco));
            }

            return(Task.FromResult <ApplicantEducations>(edus));
        }
 public IHttpActionResult GetAllApplicantEducation()
 {
     try
     {
         IEnumerable <ApplicantEducationPoco> 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);
     }
 }
Exemplo n.º 20
0
        public override Task <ApplicantEducations> GetApplicantEducations(Empty request, ServerCallContext context)
        {
            List <ApplicantEducationPoco> pocos = _logic.GetAll();
            ApplicantEducations           edus  = new ApplicantEducations();

            foreach (var poco in pocos)
            {
                ApplicantEducationReply reply = FromPoco(poco);
                edus.AppEdus.Add(reply);
            }
            return(Task.FromResult(edus));
        }
Exemplo n.º 21
0
        public ActionResult GetAllApplicantEducation()
        {
            var applicants = _logicref.GetAll();

            if (applicants != null)
            {
                return(Ok(applicants));
            }
            else
            {
                return(NotFound());
            }
        }
Exemplo n.º 22
0
 public IHttpActionResult GetAllApplicantEducation()
 {
     try
     {
         List <ApplicantEducationPoco> pocos = _logic.GetAll();
         if (pocos == null)
         {
             return(NotFound());
         }
         return(Ok(pocos));
     }
     catch (Exception e)
     {
         return(InternalServerError(e));
     }
 }
Exemplo n.º 23
0
        // GET: ApplicantEducation
        public IActionResult Index(Guid?Applicant)
        {
            var Educations = _logic.GetAll(a => a.ApplicantProfile, s => s.ApplicantProfile.SecurityLogin);

            if (Applicant != null)
            {
                Educations = Educations.Where(a => a.Applicant == Applicant).ToList();
            }
            else
            {
                return(NotFound());
            }

            ViewData["Id"] = Applicant;
            return(View(Educations.ToList()));
        }
Exemplo n.º 24
0
 // GET: ApplicantEducation
 public ActionResult Index()
 {
     return(View(logic.GetAll()));
 }
 public ActionResult GetAllApplicantEducation()
 {
     _logic.GetAll();
     return(Ok());
 }
 public IActionResult GetAllApplicantEducation()
 {
     return(Ok(_logic.GetAll()));
 }
        public IHttpActionResult GetAllCompanyProfile()
        {
            List <ApplicantEducationPoco> appEdu = _logic.GetAll();

            return(Ok(appEdu));
        }
 //[Route("odata")]
 public IQueryable <ApplicantEducationPoco> Get()
 {
     return(_logic.GetAll().AsQueryable());
 }
Exemplo n.º 29
0
 public List <ApplicantEducationPoco> GetAllApplicantEducation()
 {
     return(_logic.GetAll());
 }