public IEnumerable <Todo> Delete(int id)
        {
            var todos = Get(id);

            if (todos.Count() > 0)
            {
                todosRepository.DeleteRange(todos);
            }
            return(Get());
        }