Blame view

Vrh.OneReport/XmlProcessing/IOneReport.cs 601 Bytes
ab9f2fbe   Schwirg László   Add project files.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  using System;
  using System.Collections;
  using System.Collections.Specialized;
  using System.Data.Entity.Core.Objects;
  using System.Linq;
  using System.Reflection;
  using System.Xml.Linq;
  
  using Vrh.XmlProcessing;
  
  namespace Vrh.OneReport
  {
      public interface IOneReport
      {
          string GetSqlText(string scriptname, string sqldbconnectionstring, string xmlconnectionstring,XElement datasetxml, NameValueCollection parameters);
          IEnumerable GetData(string scriptname, string sqldbconnectionstring, string xmlconnectionstring, XElement datasetxml, NameValueCollection parameters);
      }
  }