public void Delete(TodoEntity todoEntity)
        {
            var operation = TableOperation.Delete(todoEntity);

            todoTable.Execute(operation);
        }
        public void CreateorUpdate(TodoEntity todoEntity)
        {
            var operation = TableOperation.InsertOrReplace(todoEntity);

            todoTable.Execute(operation);
        }