public PlanAnalytiquePivot GetPlanAnalytique(long?id)
        {
            var compteg = planAnalytiqueRepository.GetById((int)id);
            PlanAnalytiquePivot comptegPivot = Mapper.Map <CPT_PlanAnalytique, PlanAnalytiquePivot>(compteg);

            return(comptegPivot);
        }
        public ActionResult DeleteConfirmed([Bind(Include = "Id")] CPT_PlanAnalytiqueFormViewModel cpt_calsses)
        {
            PlanAnalytiquePivot cods  = Mapper.Map <CPT_PlanAnalytiqueFormViewModel, PlanAnalytiquePivot>(cpt_calsses);
            PlanAnalytiquePivot codes = PlanAnalytiqueServise.GetPlanAnalytique(cods.Id);


            PlanAnalytiqueServise.DeletPlanAnalytiquePivot(codes);
            // db.SaveChanges();
            PlanAnalytiqueServise.SavePlanAnalytiquePivot();
            return(RedirectToAction("Index"));
        }
        public ActionResult Delete(long?id)
        {
            ViewBag.IdDossier = new SelectList(dossiersService.GetActifDossier(), "DossierId", "CodeDossier");
            //db.GEN_Dossiers.Where(e => e.Actif), "Id", "CodeDossier");
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            PlanAnalytiquePivot cpt_compte = PlanAnalytiqueServise.GetPlanAnalytique((int)id);

            //db.GEN_Devises.Find(id);
            if (cpt_compte == null)
            {
                return(HttpNotFound());
            }

            CPT_PlanAnalytiqueFormViewModel cpt_codd = Mapper.Map <PlanAnalytiquePivot, CPT_PlanAnalytiqueFormViewModel>(cpt_compte);

            return(View(cpt_codd));
        }
        public ActionResult Edit([Bind(Include = "Id,Code,Libelle,IdPlanAnalytique,IdDossier")]  PlanAnalytiquePivot cpt_compteG)
        {
            if (ModelState.IsValid)
            {
                cpt_compteG.IdDossier        = Constantes.IdentifiantDossier;
                cpt_compteG.sys_dateUpdate   = DateTime.Now;
                cpt_compteG.sys_dateCreation = DateTime.Now;
                cpt_compteG.sys_user         = Constantes.IdentifiantUser;
                PlanAnalytiqueServise.UpdatePlanAnalytiquePivot(cpt_compteG);
                //   db.SaveChanges();
                PlanAnalytiqueServise.SavePlanAnalytiquePivot();
                return(RedirectToAction("Index"));
            }
            ViewBag.IdDossier = new SelectList(dossiersService.GetActifDossier(), "DossierId", "CodeDossier", cpt_compteG.IdDossier);
            //db.GEN_Dossiers.Where(e => e.Actif), "Id", "CodeDossier", gEN_Devises.IdDossier);

            CPT_PlanAnalytiqueFormViewModel cpt_compteGFormModel = Mapper.Map <PlanAnalytiquePivot, CPT_PlanAnalytiqueFormViewModel>(cpt_compteG);

            return(View(cpt_compteGFormModel));
        }
        public ActionResult Create([Bind(Include = "Id,Code,Libelle,IdPlanAnalytique,IdDossier")] PlanAnalytiquePivot cpt_comptes)
        {
            // if (ModelState.IsValid)
            if (cpt_comptes != null)
            {
                if (cpt_comptes.Id > 0)
                {
                    cpt_comptes.IdDossier        = Constantes.IdentifiantDossier;
                    cpt_comptes.sys_dateUpdate   = DateTime.Now;
                    cpt_comptes.sys_dateCreation = DateTime.Now;
                    cpt_comptes.sys_user         = Constantes.IdentifiantUser;


                    PlanAnalytiqueServise.UpdatePlanAnalytiquePivot(cpt_comptes);
                    PlanAnalytiqueServise.SavePlanAnalytiquePivot();
                }
                else
                {
                    cpt_comptes.IdDossier        = Constantes.IdentifiantDossier;
                    cpt_comptes.sys_dateUpdate   = DateTime.Now;
                    cpt_comptes.sys_dateCreation = DateTime.Now;
                    cpt_comptes.sys_user         = Constantes.IdentifiantUser;



                    PlanAnalytiqueServise.CreatePlanAnalytiquePivot(cpt_comptes);
                    PlanAnalytiqueServise.SavePlanAnalytiquePivot();
                }


                return(RedirectToAction("Index"));
            }



            ViewBag.IdDossier = new SelectList(dossiersService.GetActifDossier(), "DossierId", "CodeDossier", cpt_comptes.IdDossier);
            CPT_PlanAnalytiqueFormViewModel cpt_comptsFormModel = Mapper.Map <PlanAnalytiquePivot, CPT_PlanAnalytiqueFormViewModel>(cpt_comptes);

            return(View(cpt_comptsFormModel));
        }
 public void UpdatePlanAnalytiquePivot(PlanAnalytiquePivot PlanAnalytique)
 {
     planAnalytiqueRepository.Update(PlanAnalytique.Id, Mapper.Map <PlanAnalytiquePivot, CPT_PlanAnalytique>(PlanAnalytique));
 }
        public void CreatePlanAnalytiquePivot(PlanAnalytiquePivot PlanAnalytique)
        {
            CPT_PlanAnalytique clas = Mapper.Map <PlanAnalytiquePivot, CPT_PlanAnalytique>(PlanAnalytique);

            planAnalytiqueRepository.Add(clas);
        }