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