Last change
on this file since 11044 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 | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Web;
|
---|
5 | using HeuristicLab.Services.Optimization.Billing.Model;
|
---|
6 |
|
---|
7 | namespace 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.