Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/12/13 16:34:04 (11 years ago)
Author:
spimming
Message:

#1888:

  • Added new BillingService methods
  • Disabled proxy generation and lazy loading!
  • Extended see method with additional test data
  • Added properties to order and invoice model
  • initial commit of BillingEngine module
File:
1 edited

Legend:

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

    r9602 r9619  
    9292    public DateTime? ActiveSince { get; set; }
    9393    public DateTime? ActiveUntil { get; set; }
     94    public DateTime? LastBillableDay { get; set; }
     95    public DateTime? NextBillableDay { get; set; }
    9496
    9597    public virtual User User { get; set; }
     
    130132    public long UserId { get; set; }
    131133    public long OrderId { get; set; }
     134    public DateTime InvoiceDate { get; set; }
    132135    public DateTime Due { get; set; }
    133136    public int StatusValue { get; set; }
     137    public double Total { get; set; }
     138    public double Tax { get; set; }
    134139    public string InvoiceDocument { get; set; }
    135140
Note: See TracChangeset for help on using the changeset viewer.