|
@@ -48,6 +48,12 @@ public abstract class DigitalFormInstanceShell<TModel, TParent, TParentLink, TFo
|
|
|
set => Set(value);
|
|
|
}
|
|
|
|
|
|
+ public string FormDescriptionExpression
|
|
|
+ {
|
|
|
+ get => Get<string>();
|
|
|
+ set => Set(value);
|
|
|
+ }
|
|
|
+
|
|
|
public DateTime Created => Get<DateTime>();
|
|
|
|
|
|
public DateTime Completed
|
|
@@ -82,6 +88,7 @@ public abstract class DigitalFormInstanceShell<TModel, TParent, TParentLink, TFo
|
|
|
.Map(nameof(FormID), x => x.Form.ID)
|
|
|
.Map(nameof(FormCode), x => x.Form.Code)
|
|
|
.Map(nameof(FormDescription), x => x.Form.Description)
|
|
|
+ .Map(nameof(FormDescriptionExpression), x => x.Form.DescriptionExpression)
|
|
|
.Map(nameof(Description), x => x.Description)
|
|
|
.Map(nameof(Completed), x => x.FormCompleted)
|
|
|
.Map(nameof(Started), x => x.FormStarted)
|