|
@@ -36,6 +36,12 @@ public abstract class DigitalFormInstanceShell<TModel, TParent, TParentLink, TFo
|
|
set => Set(value);
|
|
set => Set(value);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public string Description
|
|
|
|
+ {
|
|
|
|
+ get => Get<string>();
|
|
|
|
+ set => Set(value);
|
|
|
|
+ }
|
|
|
|
+
|
|
public string FormDescription
|
|
public string FormDescription
|
|
{
|
|
{
|
|
get => Get<string>();
|
|
get => Get<string>();
|
|
@@ -76,6 +82,7 @@ public abstract class DigitalFormInstanceShell<TModel, TParent, TParentLink, TFo
|
|
.Map(nameof(FormID), x => x.Form.ID)
|
|
.Map(nameof(FormID), x => x.Form.ID)
|
|
.Map(nameof(FormCode), x => x.Form.Code)
|
|
.Map(nameof(FormCode), x => x.Form.Code)
|
|
.Map(nameof(FormDescription), x => x.Form.Description)
|
|
.Map(nameof(FormDescription), x => x.Form.Description)
|
|
|
|
+ .Map(nameof(Description), x => x.Description)
|
|
.Map(nameof(Completed), x => x.FormCompleted)
|
|
.Map(nameof(Completed), x => x.FormCompleted)
|
|
.Map(nameof(Started), x => x.FormStarted)
|
|
.Map(nameof(Started), x => x.FormStarted)
|
|
.Map(nameof(Data), x => x.FormData)
|
|
.Map(nameof(Data), x => x.FormData)
|
|
@@ -85,6 +92,6 @@ public abstract class DigitalFormInstanceShell<TModel, TParent, TParentLink, TFo
|
|
|
|
|
|
public override string[] TextSearchValues()
|
|
public override string[] TextSearchValues()
|
|
{
|
|
{
|
|
- return [FormCode, FormDescription];
|
|
|
|
|
|
+ return [FormCode, Description];
|
|
}
|
|
}
|
|
}
|
|
}
|