Ejemplo n.º 1
0
        public ToDoEntity AddToDoList(ToDoEntity toDoEntity)
        {
            toDoEntity.CreatedDate = DateTime.Now;
            toDoListRepository.AddToDoList(toDoEntity);

            return(toDoEntity);
        }