Ejemplo n.º 1
0
        public ToDoEntity UpdateToDoList(ToDoEntity toDoEntity)
        {
            ToDoEntity toDoEntityId = toDoListRepository.GetToDo(toDoEntity.Id);

            toDoEntity.UpdatedDate   = DateTime.Now;
            toDoEntityId.UpdatedDate = toDoEntity.UpdatedDate;
            toDoEntityId.Description = toDoEntity.Description;
            toDoListRepository.UpdateToDoList(toDoEntityId);
            return(toDoEntity);
        }