public async Task <bool> DeleteItem(TodoItem ti)
        {
            string    uri = "https://localhost:44374/api/Todo/" + ti.Id;
            WSManager mgr = new WSManager();

            return(await mgr.HTTPDelete(uri, ti));
        }