コード例 #1
0
        public void UpdateGroupRole(GroupRole param)
        {
            // Get sysdate
            var currentDate = DateTime.Now;

            // Set item
            var entity = GetSingle<GroupRole>(new string[] { param.GroupCd, param.RoleCd }, true);
            entity.DeleteFlag = param.DeleteFlag;
            entity.UpdateUser = PageHelper.UserName;
            entity.UpdateDate = currentDate;
        }
コード例 #2
0
ファイル: Entities.designer.cs プロジェクト: hieur8/web-mbec
 partial void DeleteGroupRole(GroupRole instance);
コード例 #3
0
ファイル: Entities.designer.cs プロジェクト: hieur8/web-mbec
 partial void UpdateGroupRole(GroupRole instance);
コード例 #4
0
ファイル: Entities.designer.cs プロジェクト: hieur8/web-mbec
 partial void InsertGroupRole(GroupRole instance);
コード例 #5
0
ファイル: Entities.designer.cs プロジェクト: hieur8/web-mbec
		private void detach_GroupRoles(GroupRole entity)
		{
			this.SendPropertyChanging();
			entity.Group = null;
		}
コード例 #6
0
ファイル: Entities.designer.cs プロジェクト: hieur8/web-mbec
		private void attach_GroupRoles(GroupRole entity)
		{
			this.SendPropertyChanging();
			entity.Group = this;
		}