Example #1
0
        public int UpdateActionUpdateParentWindowActionGridByID(Guid ActionID)
        {
            access = new BrienzDataAccess();
            BrienzAction GetAction = access.GetActionByActionID(ActionID);

            GetAction.EndTime       = this.EndTime;
            GetAction.ActionContent = this.DocumentXaml;
            GetAction.FromResource  = this.FromResource;
            GetAction.Location      = this.Location;
            GetAction.IsAllDayEvent = this.IsAllDayEvent;
            GetAction.Priority      = this.Priority.Content as string;
            GetAction.StartTime     = this.StartTime;
            GetAction.Subject       = this.Subject;
            return(access.UpdateAction(GetAction));
        }