void TKChiTieuClient_PhieuNhapKho_GetItems_TheoNamCompleted(object sender, PhieuNhapKho_GetItems_TheoNamCompletedEventArgs e)
 {
     grvPhieuNhapKho.ItemsSource = e.Result;
     LoadingPanel.Visibility = Visibility.Collapsed;
     LoadingPanel.IsBusy = false;
 }
        void TKChiTieuClient_PhieuNhapKho_GetItems_TheoNamCompleted(object sender, PhieuNhapKho_GetItems_TheoNamCompletedEventArgs e)
        {
            List<TKChiTieuInfo> TKDoanhThu = new List<TKChiTieuInfo>();
            TKDoanhThu = e.Result.ToList<TKChiTieuInfo>();

            grvPhieuNhapKho.ItemsSource = TKDoanhThu;
            TinhTong(TKDoanhThu);
            LoadingPanel.Visibility = Visibility.Collapsed;LoadingPanel.IsBusy = false;
        }