private void ExPortTable_Click(object sender, RoutedEventArgs e)
        {
            AppService.DataInfoAppService ins     = new AppService.DataInfoAppService();
            Dictionary <string, string>   vExport = new Dictionary <string, string>();

            vExport.Add("QueryID", "ssQueries");
            vExport.Add("QueryColumnID", "ssQueries_Columns");
            ins.ExportToXML(vExport, 2000, txtDirExport.Text);
        }
        private void ExporFilter_Click(object sender, RoutedEventArgs e)
        {
            AppService.DataInfoAppService ins = new AppService.DataInfoAppService();
            List <string> vFilter             = new List <string>();

            vFilter.Add("53");
            vFilter.Add("55");
            ins.ExportReportByListToXML(vFilter, 1000, "Demo.xml");
        }
 private void ImportBT_Click(object sender, RoutedEventArgs e)
 {
     AppService.DataInfoAppService ins = new AppService.DataInfoAppService();
     ins.Import(txtDirExport.Text);
 }