Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/18/13 11:39:31 (12 years ago)
Author:
spimming
Message:

#1888:

  • Users now contain ContactInformation
  • Fixed formatting in invoice template
  • Fixed calculation for next invoice date
  • Worked on indentation for invoice fields
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OaaS/HeuristicLab.Services.Optimization.Billing/Model/Model.cs

    r9619 r9641  
    77   * Note: enum support
    88   * Although we use EF5 enums are not supported as we target .NET 4.0.
    9    * Therefor we use the following workaround:
     9   * Therefore we use the following workaround:
    1010   * Just create an int property on your class to represent the int value of the enum.
    1111   * That's the property that EF should map, then have a "mini wrapper" property to allow you to use the enum
     
    7070  public class User {
    7171    public long UserId { get; set; }
     72    public long ContactInformationId { get; set; }
    7273    public string Name { get; set; }
    7374
    7475    public virtual IList<PaymentInformation> PaymentInformation { get; set; }
    75 
     76    public virtual ContactInformation ContactInformation { get; set; }
    7677  }
    7778
Note: See TracChangeset for help on using the changeset viewer.