public void CloneData(TodoItem item) { if (item == null) { throw new ArgumentNullException("item"); } _repository.Clone(item); }