public UserProjectSignup Update(UserProjectSignup projRole)
        {
            using (var ctx = new WcfEntityContext())
            {
                ctx.AttachModify("UserProjectSignups", projRole);

                return projRole;
            }
        }
        public BugActionLog Update(BugActionLog log)
        {
            using (var ctx = new WcfEntityContext())
            {
                ctx.AttachModify("BugActionLogs", log);

                return log;
            }
        }
        public ProjectRole Update(ProjectRole projRole)
        {
            using (var ctx = new WcfEntityContext())
            {
                ctx.AttachModify("ProjectRoles", projRole);

                return projRole;
            }
        }
예제 #4
0
        public Role Update(Role role)
        {
            using (var ctx = new WcfEntityContext())
            {
                ctx.AttachModify("Roles", role);
                ctx.SaveChanges();

                return role;
            }
        }
예제 #5
0
        public Project Update(Project project)
        {
            using (var ctx = new WcfEntityContext())
            {
                ctx.AttachModify("Projects", project);
                ctx.SaveChanges();

                return project;
            }
        }
예제 #6
0
        public User Update(User user)
        {
            using (var ctx = new WcfEntityContext())
            {
                ctx.AttachModify("Users", user);

                ctx.SaveChanges();

                return user;
            }
        }