WIP billing
This commit is contained in:
parent
569cd74760
commit
62e1c49c1f
12 changed files with 1462 additions and 10 deletions
20
Yavsc/Model/Billing/EstimateTemplate.cs
Normal file
20
Yavsc/Model/Billing/EstimateTemplate.cs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace Yavsc.Models.Billing
|
||||
{
|
||||
public partial class EstimateTemplate
|
||||
{
|
||||
|
||||
[Key(), DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||
public long Id { get; set; }
|
||||
public string Description { get; set; }
|
||||
public string Title { get; set; }
|
||||
public List<CommandLine> Bill { get; set; }
|
||||
|
||||
[Required]
|
||||
public string OwnerId { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -40,7 +40,7 @@ namespace Yavsc.Models.Billing
|
|||
/// The bill
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public List<CommandLine> Bill { get; set; }
|
||||
public List<Service> Bill { get; set; } = new List<Service>();
|
||||
|
||||
///<summary>
|
||||
/// Time span in seconds in which
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue