Ejemplo n.º 1
0
        public void AddCheckList(string checkListDescription, int checkListPoints, int GroupId)
        {
            GroupCheckList checkListItem = new GroupCheckList();

            checkListItem.GroupId = GroupId;
            checkListItem.Name    = checkListDescription;
            checkListItem.Points  = checkListPoints;
            _dbContext.GroupCheckLists.Add(checkListItem);
        }
Ejemplo n.º 2
0
        public void UpdateCheckList(int checkListId, string checkListDescription, int checkListPoints, int GroupId)
        {
            GroupCheckList checkListItem = _dbContext.GroupCheckLists.FirstOrDefault(x => x.Id == checkListId);

            if (checkListItem != null)
            {
                checkListItem.GroupId = GroupId;
                checkListItem.Name    = checkListDescription;
                checkListItem.Points  = checkListPoints;
            }
        }