Exemplo n.º 1
0
 public void Export(DataTable dt)
 {
     Session = new DTSSession()
     {
         Direction = DTSDirection.Export, DataSource = dt
     };
     ShowDialog();
 }
Exemplo n.º 2
0
 public DataTable Import()
 {
     Session = new DTSSession()
     {
         Direction = DTSDirection.Import
     };
     ShowDialog();
     if (Context != null)
     {
         return(Context.Data);
     }
     return(null);
 }