コード例 #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)
 {
 }
コード例 #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;
 }
コード例 #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;
 }
コード例 #4
0
 /// <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)
 {
 }
コード例 #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;
 }
コード例 #6
0
ファイル: ReportDetail.cs プロジェクト: Solitea/IdokladSdk
 /// <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)
 {
 }
コード例 #7
0
ファイル: BaseReportList.cs プロジェクト: Solitea/IdokladSdk
 /// <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;
 }