WIP
This commit is contained in:
parent
e58e7782e2
commit
6d5178bf43
16 changed files with 1209 additions and 34 deletions
|
|
@ -5,7 +5,7 @@ namespace Yavsc.Models.Billing
|
|||
|
||||
public class ServiceContract<P> where P : Service
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -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; }
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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; }
|
||||
}
|
||||
}
|
||||
|
|
@ -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; }
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue