Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization.Billing/Interfaces/IOptimizationBilling.cs @ 9551

Last change on this file since 9551 was 9551, checked in by fschoepp, 11 years ago

#1888:

  • Removed "public" modifiers
File size: 560 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.ServiceModel;
6using System.Net.Security;
7using HeuristicLab.Services.Optimization.Billing.Model;
8
9namespace HeuristicLab.Services.Optimization.Billing.Interfaces {
10  [ServiceContract(ProtectionLevel = ProtectionLevel.EncryptAndSign)]
11  public interface IOptimizationBilling {
12    IList<Product> GetProducts();
13    // payment methods via enumeration
14    void SaveOrder(Order order);
15    IList<Order> GetOrdersByState(OrderState state);
16  }
17}
Note: See TracBrowser for help on using the repository browser.