- Timestamp:
- 06/24/13 14:11:05 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS/HeuristicLab.Services.Optimization.Web/Models/OrderModel.cs
r9582 r9654 1 1 using System; 2 2 using System.Collections.Generic; 3 using System.Linq;4 using System.Web;5 3 using HeuristicLab.Services.Optimization.Billing.Model; 6 4 … … 9 7 public class OrderModel { 10 8 public BillingType BillingType { get; set; } 11 public BillingPeriod BillingPeriod { get; set; } 9 public BillingPeriod BillingPeriod { get; set; } 12 10 public DateTime? ActiveSince { get; set; } 13 11 public DateTime? ActiveUntil { get; set; } … … 43 41 } 44 42 43 public class ContactInformationModel { 44 public long ContactInformationId { get; set; } 45 public string OrganizationName { get; set; } 46 public string Street { get; set; } 47 public string City { get; set; } 48 public string State { get; set; } 49 public string PostalCode { get; set; } 50 public string LastName { get; set; } 51 public string FirstName { get; set; } 52 public string Email { get; set; } 53 } 54 45 55 public class ProductsModel { 46 56 public IList<Product> Products { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.