Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/12/13 16:34:04 (11 years ago)
Author:
spimming
Message:

#1888:

  • Added new BillingService methods
  • Disabled proxy generation and lazy loading!
  • Extended see method with additional test data
  • Added properties to order and invoice model
  • initial commit of BillingEngine module
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OaaS/HeuristicLab.Services.Optimization.Billing/Business/MockupBillingService.cs

    r9602 r9619  
    118118      return null;
    119119    }
     120
     121    #region IOptimizationBilling Members
     122
     123
     124    public IList<Model.Product> GetProductByName(string productName) {
     125      throw new NotImplementedException();
     126    }
     127
     128    public void UpdateOrder(Model.Order order) {
     129      throw new NotImplementedException();
     130    }
     131
     132    public IList<Model.UsageRecord> GetUsageRecords(string username, DateTime from, DateTime to) {
     133      throw new NotImplementedException();
     134    }
     135
     136    #endregion
    120137  }
    121138}
Note: See TracChangeset for help on using the changeset viewer.