a form model
This commit is contained in:
parent
612547c4a1
commit
dfa034afcf
5 changed files with 70 additions and 0 deletions
21
Yavsc/Model/Forms/Field.cs
Normal file
21
Yavsc/Model/Forms/Field.cs
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
using Yavsc.Model.Forms.Validation;
|
||||||
|
|
||||||
|
namespace Yavsc.Model.Forms
|
||||||
|
{
|
||||||
|
public abstract class Field
|
||||||
|
{
|
||||||
|
[Key,DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||||
|
public long Id { get; set; }
|
||||||
|
public abstract Method [] ValidationMethods ();
|
||||||
|
|
||||||
|
public string Name { get; set; }
|
||||||
|
|
||||||
|
public string Label { get; set; }
|
||||||
|
public string PlaceHolder { get; set; }
|
||||||
|
|
||||||
|
public string ValueType { get; set; }
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
11
Yavsc/Model/Forms/FieldSet.cs
Normal file
11
Yavsc/Model/Forms/FieldSet.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace Yavsc.Model.Forms
|
||||||
|
{
|
||||||
|
public class FieldSet
|
||||||
|
{
|
||||||
|
public string Legend {get; set;}
|
||||||
|
public List<Field> Fields { get; set; }
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
14
Yavsc/Model/Forms/Form.cs
Normal file
14
Yavsc/Model/Forms/Form.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
|
||||||
|
namespace Yavsc.Model.Forms
|
||||||
|
{
|
||||||
|
public class Form
|
||||||
|
{
|
||||||
|
[Key]
|
||||||
|
public string Id {get; set;}
|
||||||
|
|
||||||
|
public string Summary { get; set; }
|
||||||
|
public List<IFormNode> Content { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
17
Yavsc/Model/Forms/Validation/Method.cs
Normal file
17
Yavsc/Model/Forms/Validation/Method.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
|
||||||
|
namespace Yavsc.Model.Forms.Validation
|
||||||
|
{
|
||||||
|
public class Method
|
||||||
|
{
|
||||||
|
[Key]
|
||||||
|
public string Name {get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// TODO localisation ...
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
[Required]
|
||||||
|
public string ErrorMessage { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
7
Yavsc/Model/Forms/Validation/Required.cs
Normal file
7
Yavsc/Model/Forms/Validation/Required.cs
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
namespace Yavsc.Model.Forms.Validation
|
||||||
|
{
|
||||||
|
public class Required : Method
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue