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

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