public void DeleteItem(int id) { Todoitem toDoItem = context.ToDoList.Where(item => item.Id == id).FirstOrDefault(); context.Remove(toDoItem); context.SaveChanges(); }
public void AddItem(string description, string status) { Todoitem item = new Todoitem(description, status); context.ToDoList.Add(item); context.SaveChanges(); }
public void updateItem(int id, string newDescription, string newStatus) { Todoitem oldItem = context.ToDoList.Where(item => item.Id == id).FirstOrDefault(); oldItem.Description = newDescription; oldItem.Status = newStatus; context.Update(oldItem); context.SaveChanges(); }