/// <summary> /// Create a new todo object. /// </summary> /// <param name="idTodo">Initial value of the idTodo property.</param> /// <param name="nombre">Initial value of the nombre property.</param> /// <param name="descripcion">Initial value of the descripcion property.</param> /// <param name="fechaI">Initial value of the fechaI property.</param> /// <param name="fechaF">Initial value of the fechaF property.</param> /// <param name="status">Initial value of the status property.</param> /// <param name="userOwner">Initial value of the userOwner property.</param> public static todo Createtodo(global::System.Int32 idTodo, global::System.String nombre, global::System.String descripcion, global::System.DateTime fechaI, global::System.DateTime fechaF, global::System.String status, global::System.String userOwner) { todo todo = new todo(); todo.idTodo = idTodo; todo.nombre = nombre; todo.descripcion = descripcion; todo.fechaI = fechaI; todo.fechaF = fechaF; todo.status = status; todo.userOwner = userOwner; return todo; }
/// <summary> /// Deprecated Method for adding a new object to the todos EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddTotodos(todo todo) { base.AddObject("todos", todo); }