Last change
on this file since 11017 was
9586,
checked in by fschoepp, 12 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:
360 bytes
|
Rev | Line | |
---|
[9577] | 1 |
|
---|
| 2 | using HeuristicLab.Services.Optimization.Billing.Interfaces;
|
---|
| 3 | namespace HeuristicLab.Services.Optimization.Billing.Business {
|
---|
| 4 | public static class BillingServiceProvider {
|
---|
[9586] | 5 | private static IOptimizationBilling instance = new MockupBillingService();
|
---|
[9577] | 6 |
|
---|
| 7 | public static IOptimizationBilling Instance {
|
---|
| 8 | get { return instance; }
|
---|
| 9 | }
|
---|
| 10 | }
|
---|
| 11 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.