async Task handle(BaseDoWorkViewModel.StockArgs e)
        {
            string id = e.StockItem.StockId;

            System.Diagnostics.Debug.WriteLine($"****************  pull 30m data : {id} start  ***************************");
            HandleFun hf = new HandleFun();
            await hf.Update_Price30mAsync(id);

            System.Diagnostics.Debug.WriteLine($"****************  pull 30m data : {id} end    ***************************");
        }
 async Task DayDataFiller_stockHandle(BaseDoWorkViewModel.StockArgs e)
 {
     System.Diagnostics.Debug.WriteLine($"******************pull daily data : {e.StockItem.StockId}***************************");
     await FillStockDataFormNetEase(e.StockItem, _startDate);
 }