Free cookie consent management tool by TermsFeed Policy Generator

source: branches/1888_OaaS/HeuristicLab.Services.Optimization.Billing/Business/BillingServiceProvider.cs @ 18242

Last change on this file since 18242 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
2using HeuristicLab.Services.Optimization.Billing.Interfaces;
3namespace 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.