Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.ServiceModel;
|
---|
6 | using System.Net.Security;
|
---|
7 | using HeuristicLab.Services.Optimization.Billing.Model;
|
---|
8 |
|
---|
9 | namespace 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.