Changeset 9551
- Timestamp:
- 05/29/13 10:58:52 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS/HeuristicLab.Services.Optimization.Billing/Interfaces/IOptimizationBilling.cs
r9550 r9551 10 10 [ServiceContract(ProtectionLevel = ProtectionLevel.EncryptAndSign)] 11 11 public interface IOptimizationBilling { 12 publicIList<Product> GetProducts();12 IList<Product> GetProducts(); 13 13 // payment methods via enumeration 14 publicvoid SaveOrder(Order order);15 publicIList<Order> GetOrdersByState(OrderState state);14 void SaveOrder(Order order); 15 IList<Order> GetOrdersByState(OrderState state); 16 16 } 17 17 }
Note: See TracChangeset
for help on using the changeset viewer.