Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="IssuedInvoiceReportList"/> class.
 /// </summary>
 /// <param name="client">Client.</param>
 /// <param name="documentType">Document type.</param>
 public IssuedInvoiceReportList(ReportClient client, ReportDocumentType documentType)
     : base(client, documentType)
 {
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="IssuedInvoiceReport"/> class.
 /// </summary>
 /// <param name="client">Client.</param>
 /// <param name="documentType">Document type.</param>
 public IssuedInvoiceReport(ReportClient client, ReportDocumentType documentType)
 {
     _client       = client;
     _documentType = documentType;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ReportBaseDetail" /> class.
 /// </summary>
 /// <param name="id">Id.</param>
 /// <param name="client">Report client.</param>
 /// <param name="documentType">Document type.</param>
 public ReportBaseDetail(int id, ReportClient client, ReportDocumentType documentType)
 {
     Client        = client;
     _id           = id;
     _documentType = documentType;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="IssuedInvoiceDetailReport"/> class.
 /// </summary>
 /// <param name="invoiceId">Id.</param>
 /// <param name="client">Client.</param>
 /// <param name="documentType">Document type.</param>
 public IssuedInvoiceDetailReport(int invoiceId, ReportClient client, ReportDocumentType documentType)
     : base(invoiceId, client, documentType)
 {
 }
Exemplo n.º 5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Report"/> class.
 /// </summary>
 /// <param name="client">Client.</param>
 /// <param name="documentType">Document type.</param>
 public Report(ReportClient client, ReportDocumentType documentType)
 {
     Client        = client;
     _documentType = documentType;
 }
Exemplo n.º 6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ReportDetail"/> class.
 /// </summary>
 /// <param name="invoiceId">Id.</param>
 /// <param name="client">Client.</param>
 /// <param name="documentType">Document type.</param>
 public ReportDetail(int invoiceId, ReportClient client, ReportDocumentType documentType)
     : base(invoiceId, client, documentType)
 {
 }
Exemplo n.º 7
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BaseReportList{TList, TClient, TGetModel, TFilter, TSort}"/> class.
 /// </summary>
 /// <param name="client">Client.</param>
 /// <param name="documentType">Document type.</param>
 protected BaseReportList(TClient client, ReportDocumentType documentType)
 {
     _client       = client;
     _documentType = documentType;
 }