/// <summary> /// Get list of completed tasks /// </summary> /// <returns>List of completed tasks</returns> public async Task <List <UpdateItem> > GetListAsync() { if (UpdateList == null) { await ReadDataAsync(); } return(UpdateList.ToList()); }