This commit is contained in:
Paul Schneider 2016-11-24 01:01:41 +01:00
commit 6d5178bf43
16 changed files with 1209 additions and 34 deletions

View file

@ -5,7 +5,7 @@ namespace Yavsc.Models.Billing
public class ServiceContract<P> where P : Service
{
}
}

View file

@ -69,8 +69,10 @@ namespace Yavsc.Models.Billing
get; set;
}
public DateTime LatestValidationDate { get; set; }
public DateTime ClientApprouvalDate { get; set; }
public Byte [] ProviderSignature { get; set; }
public Byte [] ClientSignature { get; set; }
public DateTime ProviderValidationDate { get; set; }
public DateTime ClientValidationDate { get; set; }
}
}

View file

@ -1,12 +0,0 @@
using System;
using System.ComponentModel.DataAnnotations;
namespace Yavsc.Models.Billing
{
public partial class Contract : Estimate
{
[Required]
public DateTime ClientValidationDate { get; set; }
}
}

View file

@ -10,11 +10,14 @@ namespace Yavsc.Model.Forms
public long Id {  get; set; }
public abstract Method [] ValidationMethods ();
[Required]
public string Name { get; set; }
public string Label { get; set; }
public string PlaceHolder { get; set; }
[Required]
public string ValueType { get; set; }
}