Esempio n. 1
0
        public JsonResult DeleteSection(EPortal.Models.Section Section)
        {
            int result = 0;
            //string orgid = Session["OrgId"].ToString();
            string orgid = User.OrgId;

            string errormsg = string.Empty;

            // validation = EPortal.Utility.Utility.ValidateProperty(orgdata.Code, "Required");

            using (EPortalEntities entity = new EPortalEntities())
            {
                //var checkref = (from r in entity.Sectiones
                //                where r.OrganizationID == orgid
                //                && r.Id == Section.Id
                //                select r).FirstOrDefault();
                //if (checkref != null)
                //{
                //    errormsg = "Operation conflict:Operation cannot be performed.Record already in Used.";
                //}
                //else
                //{

                entity.Entry(Section).State = System.Data.Entity.EntityState.Deleted;
                result = entity.SaveChanges();
                //}
            }

            return(Json(new { result = result > 0 ? true : false, errormsg = errormsg }, JsonRequestBehavior.AllowGet));
        }
Esempio n. 2
0
        public JsonResult GetSectionInfo(EPortal.Models.Section Section)
        {
            //string orgid = Session["OrgId"].ToString();

            string orgid = User.OrgId;

            RoleList roleinforole = new RoleList();

            using (EPortalEntities entity = new EPortalEntities())
            {
                roleinforole = (from o in entity.Sections
                                where o.Id == Section.Id &&
                                o.OrganizationID == orgid
                                select new RoleList
                {
                    Id = o.Id,
                    Code = o.Code,
                    Name = o.Name,
                    Operation = "Edit"
                }).FirstOrDefault();
            }
            return(Json(roleinforole, JsonRequestBehavior.AllowGet));
        }
Esempio n. 3
0
        public JsonResult SaveSection(EPortal.Models.Section Sectioninfo)
        {
            string errormsg = "";
            int    result   = 0;

            //if ((role.Code != "" || role.Code != null) && (role.Name != "" || role.Name != null))
            {
                //string orgid = Session["OrgId"].ToString();

                string orgid = User.OrgId;

                using (EPortalEntities entity = new EPortalEntities())
                {
                    if (Sectioninfo.Operation == "Create")
                    {
                        var checkrolecode = (from r in entity.Subjects
                                             where r.OrganizationID == orgid &&
                                             r.Code == Sectioninfo.Code
                                             select r).FirstOrDefault();
                        if (checkrolecode == null)
                        {
                            Sectioninfo.Id             = Guid.NewGuid().ToString();
                            Sectioninfo.OrganizationID = orgid;
                            Sectioninfo.RowState       = true;
                            Sectioninfo.CreateDateTime = System.DateTime.Now;

                            entity.Entry(Sectioninfo).State = System.Data.Entity.EntityState.Added;
                            entity.Sections.Add(Sectioninfo);
                            try
                            {
                                result = entity.SaveChanges();
                            }
                            catch (Exception ex)
                            {
                            }
                        }
                        else
                        {
                            errormsg = "Section already exist with same Code.";
                        }
                    }
                    else
                    {
                        EPortal.Models.Section roledata = (from o in entity.Sections
                                                           where o.OrganizationID == orgid &&
                                                           o.Id == Sectioninfo.Id
                                                           select o
                                                           ).FirstOrDefault();

                        roledata.Code = Sectioninfo.Code;
                        roledata.Name = Sectioninfo.Name;
                        entity.Entry(roledata).State = System.Data.Entity.EntityState.Modified;
                        try
                        {
                            result = entity.SaveChanges();
                        }
                        catch (Exception ex)
                        {
                        }
                    }
                }
            }
            return(Json(new { result = result > 0 ? true : false, errormsg = errormsg }, JsonRequestBehavior.AllowGet));
        }