Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization.Web/Models/InvoiceModel.cs @ 13611

Last change on this file since 13611 was 9586, checked in by fschoepp, 11 years ago

#1888:

  • Billing Component may now be deactivated by setting the BillingEnabled flag within the OaaS service configuration.
  • Added views for invoices and usage data.
  • Changed appearance of the SaveOrder view.
File size: 412 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Web;
5using HeuristicLab.Services.Optimization.Billing.Model;
6
7namespace HeuristicLab.Services.Optimization.Web.Models {
8  public class InvoiceModel {
9    public IList<Invoice> PaidInvoices { get; set; }
10    public IList<Invoice> OpenInvoices { get; set; }
11    public IList<Invoice> OverdueInvoices { get; set; }
12  }
13}
Note: See TracBrowser for help on using the repository browser.