- Timestamp:
- 06/12/13 16:34:04 (12 years ago)
- Location:
- branches/OaaS/HeuristicLab.Services.Optimization.Billing/Interfaces
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS/HeuristicLab.Services.Optimization.Billing/Interfaces/IOptimizationBilling.cs
r9586 r9619 1 using System.Collections.Generic; 1 using System; 2 using System.Collections.Generic; 2 3 using System.Net.Security; 3 4 using System.ServiceModel; … … 9 10 [OperationContract] 10 11 IList<Product> GetProducts(); 12 IList<Product> GetProductByName(string productName); 11 13 12 14 // payment methods via enumeration … … 18 20 IList<Order> GetOrdersByState(OrderState state); 19 21 IList<Order> GetOrders(string userName); 22 void UpdateOrder(Order order); 23 24 IList<Invoice> GetInvoices(string userName); 20 25 21 26 User GetUser(string userName); … … 23 28 24 29 IList<UsageRecord> GetUsageRecords(string userName); 25 IList<Invoice> GetInvoices(string userName); 30 IList<UsageRecord> GetUsageRecords(string username, DateTime from, DateTime to); 31 26 32 } 27 33 }
Note: See TracChangeset
for help on using the changeset viewer.