public async Task DeleteItem(SalesData item)
 {
     await Task.Run(() => { _context.DeleteSalesData(item); });
 }