Beispiel #1
0
        public ActionResult DeleteConfirmed(int id)
        {
            TechnoEnvironmentsViewModel techEnv = db.TechnoEnv.Find(id);

            techEnv.Education                 = null;
            techEnv.EducationViewModelID      = null;
            techEnv.ProjectDetail             = null;
            techEnv.ProjectDetailsViewModelID = null;
            techEnv.Experience                = null;
            techEnv.ExperiencesViewModelID    = null;
            techEnv.Skill               = null;
            techEnv.SkillsViewModelID   = null;
            techEnv.Project             = null;
            techEnv.ProjectsViewModelID = null;
            try
            {
                db.TechnoEnv.Remove(techEnv);
                db.SaveChanges();
            }
            catch (Exception ex)
            {
                Log.error(ex.Message);
                return(View("Error"));
            }
            return(RedirectToAction("Index"));
        }
Beispiel #2
0
 public ActionResult Edit([Bind(Include = "ID,Subject,Category,path,FileName,link,ProjectsViewModelID,ProjectDetailsViewModelID,EducationViewModelID,ExperiencesViewModelID,SkillsViewModelID,PicturesViewModelID")] TechnoEnvironmentsViewModel technoEnvironmentsViewModel, string selectedCategory
                          , bool link_TechEnv_to_picture
                          , bool link_TechEnv_to_project
                          , bool link_TechEnv_to_project_detail
                          , bool link_TechEnv_to_experience
                          , bool link_TechEnv_to_education
                          , bool link_TechEnv_to_skill
                          , bool link_TechEnv_to_none)
 {
     if (ModelState.IsValid)
     {
         addOrUpdateDisplayTable(technoEnvironmentsViewModel, selectedCategory
                                 , link_TechEnv_to_picture
                                 , link_TechEnv_to_project
                                 , link_TechEnv_to_project_detail
                                 , link_TechEnv_to_experience
                                 , link_TechEnv_to_education
                                 , link_TechEnv_to_skill
                                 , link_TechEnv_to_none);
         db.Entry(technoEnvironmentsViewModel).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     setSourceDropDownList(technoEnvironmentsViewModel);
     return(View(technoEnvironmentsViewModel));
 }
Beispiel #3
0
        //===============================

        private void setSourceDropDownList(TechnoEnvironmentsViewModel techEnv)
        {
            ViewBag.EducationViewModelID      = new SelectList(db.Education, "ID", "SchoolName", techEnv.EducationViewModelID);
            ViewBag.ExperiencesViewModelID    = new SelectList(db.Experiences, "ID", "Title", techEnv.ExperiencesViewModelID);
            ViewBag.ProjectsViewModelID       = new SelectList(db.Projects, "ID", "Title", techEnv.ProjectsViewModelID);
            ViewBag.ProjectDetailsViewModelID = new SelectList(db.DetailsProject, "ID", "Subject", techEnv.ProjectDetailsViewModelID);
            ViewBag.SkillsViewModelID         = new SelectList(db.Skills, "ID", "Title", techEnv.SkillsViewModelID);
            ViewBag.PicturesViewModelID       = new SelectList(db.PicturesApp, "ID", "Subject", techEnv.PicturesViewModelID);
            ViewBag.CategoriesID = new SelectList(new List <string> {
                "Language", "Technology", "Version Control", "Web Service"
            }, techEnv.Category);
        }
Beispiel #4
0
        // GET: TechnoEnvironments/Details/5
        public ActionResult Details(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            TechnoEnvironmentsViewModel technoEnvironmentsViewModel = db.TechnoEnv.Find(id);

            if (technoEnvironmentsViewModel == null)
            {
                return(HttpNotFound());
            }
            return(View(technoEnvironmentsViewModel));
        }
Beispiel #5
0
        // GET: TechnoEnvironments/Edit/5
        public ActionResult Edit(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            TechnoEnvironmentsViewModel technoEnvironmentsViewModel = db.TechnoEnv.Find(id);

            if (technoEnvironmentsViewModel == null)
            {
                return(HttpNotFound());
            }
            setSourceDropDownList(technoEnvironmentsViewModel);
            return(View(technoEnvironmentsViewModel));
        }
Beispiel #6
0
 public ActionResult Create([Bind(Include = "ID,Subject,Category,path,FileName,link,ProjectsViewModelID,ProjectDetailsViewModelID,EducationViewModelID,ExperiencesViewModelID,SkillsViewModelID,PicturesViewModelID")] TechnoEnvironmentsViewModel technoEnvironmentsViewModel, string selectedCategory
                            , bool link_TechEnv_to_picture
                            , bool link_TechEnv_to_project
                            , bool link_TechEnv_to_project_detail
                            , bool link_TechEnv_to_experience
                            , bool link_TechEnv_to_education
                            , bool link_TechEnv_to_skill)
 {
     if (ModelState.IsValid)
     {
         try
         {
             addOrUpdateDisplayTable(technoEnvironmentsViewModel, selectedCategory
                                     , link_TechEnv_to_picture
                                     , link_TechEnv_to_project
                                     , link_TechEnv_to_project_detail
                                     , link_TechEnv_to_experience
                                     , link_TechEnv_to_education
                                     , link_TechEnv_to_skill
                                     , false);
             db.TechnoEnv.Add(technoEnvironmentsViewModel);
             db.SaveChanges();
         }
         catch (DbEntityValidationException dbEx)
         {
             ViewBag.ErrorMessage = retrievePropertiesErrors(dbEx);
             return(View("Error"));
         }
         catch (Exception ex)
         {
             Log.error(ex.Message);
             return(View("Error"));
         }
         return(RedirectToAction("Index"));
     }
     setSourceDropDownList(technoEnvironmentsViewModel);
     return(View(technoEnvironmentsViewModel));
 }
Beispiel #7
0
        private void addOrUpdateDisplayTable(TechnoEnvironmentsViewModel techEnv, string selectedCategory
                                             , bool link_TechEnv_to_picture
                                             , bool link_TechEnv_to_project
                                             , bool link_TechEnv_to_project_detail
                                             , bool link_TechEnv_to_experience
                                             , bool link_TechEnv_to_education
                                             , bool link_TechEnv_to_skill
                                             , bool link_TechEnv_to_none)
        {
            if (link_TechEnv_to_education)
            {
                techEnv.Education = db.Education.Find(techEnv.EducationViewModelID);//db.Education.Find(display.EducationViewModelID);
            }
            else
            {
                techEnv.EducationViewModelID = null;
            }

            if (link_TechEnv_to_experience)
            {
                techEnv.Experience = db.Experiences.Find(techEnv.ExperiencesViewModelID);//db.Education.Find(display.EducationViewModelID);
            }
            else
            {
                techEnv.ExperiencesViewModelID = null;
            }

            if (link_TechEnv_to_picture)
            {
                techEnv.Picture = db.PicturesApp.Find(techEnv.PicturesViewModelID);//db.Education.Find(display.EducationViewModelID);
            }
            else
            {
                techEnv.PicturesViewModelID = null;
            }

            if (link_TechEnv_to_project)
            {
                techEnv.Project = db.Projects.Find(techEnv.ProjectsViewModelID);//db.Education.Find(display.EducationViewModelID);
            }
            else
            {
                techEnv.ProjectsViewModelID = null;
            }

            if (link_TechEnv_to_project_detail)
            {
                techEnv.ProjectDetail = db.DetailsProject.Find(techEnv.ProjectDetailsViewModelID);//db.Education.Find(display.EducationViewModelID);
            }
            else
            {
                techEnv.ProjectDetailsViewModelID = null;
            }

            if (link_TechEnv_to_skill)
            {
                techEnv.Skill = db.Skills.Find(techEnv.SkillsViewModelID);//db.Education.Find(display.EducationViewModelID);
            }
            else
            {
                techEnv.SkillsViewModelID = null;
            }

            if (link_TechEnv_to_none)
            {
                techEnv.EducationViewModelID = null;
                techEnv.Education            = null;
                techEnv.ProjectsViewModelID  = null;
                techEnv.Project = null;
                techEnv.ExperiencesViewModelID    = null;
                techEnv.Experience                = null;
                techEnv.ProjectDetailsViewModelID = null;
                techEnv.ProjectDetail             = null;
                techEnv.PicturesViewModelID       = null;
                techEnv.Picture           = null;
                techEnv.SkillsViewModelID = null;
                techEnv.Skill             = null;
            }
            else
            {
                techEnv.Category = selectedCategory;
            }
        }