private async Task <int> LoadBuildsAsync() { try { var _builds = new Builds(); return(await _builds.ListAllAsync()); } catch (Exception ex) { await SaveLoadHistory(Methods.Builds, -1, false, ex.Message); throw ex; } }