Last change
on this file since 9654 was
9582,
checked in by fschoepp, 11 years ago
|
#1888:
- Added an overview for users to inspect their orders
- Order Administrators may now suspend or reactivate orders
- When creating an order, its necessary to enter payment information (paypal, credit card,...) before
- Also, the billing period and type must be entered during the creation of an order.
|
File size:
451 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 |
|
---|
9 | public class OrderAdminModel {
|
---|
10 | public long OrderId { get; set; }
|
---|
11 | public IList<Order> CreatedOrders { get; set; }
|
---|
12 | public IList<Order> ActiveOrders { get; set; }
|
---|
13 | public IList<Order> SuspendedOrders { get; set; }
|
---|
14 | }
|
---|
15 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.