|
@@ -17,7 +17,7 @@ namespace PRS.Avalonia.DigitalForms;
|
|
|
public class DigitalFormCacheModel<TParent, TParentLink, TForm> : ISerializeBinary
|
|
|
where TParent : Entity, IRemotable, IPersistent, new()
|
|
|
where TParentLink : EntityLink<TParent>, new()
|
|
|
- where TForm : EntityForm<TParent, TParentLink, TForm>, IRemotable, IPersistent, IDigitalFormInstance<TParentLink>, new()
|
|
|
+ where TForm : BaseEntityForm<TParent, TParentLink, TForm>, IRemotable, IPersistent, IDigitalFormInstance<TParentLink>, new()
|
|
|
{
|
|
|
public TParent Parent { get; set; }
|
|
|
|
|
@@ -56,7 +56,7 @@ public partial class DigitalFormsHostViewModel<TModel, TShell, TParent, TParentL
|
|
|
where TShell : DigitalFormInstanceShell<TModel, TParent, TParentLink, TForm>, new()
|
|
|
where TParent : Entity, IRemotable, IPersistent, new()
|
|
|
where TParentLink : EntityLink<TParent>, new()
|
|
|
- where TForm : EntityForm<TParent, TParentLink, TForm>, IRemotable, IPersistent, IDigitalFormInstance<TParentLink>, new()
|
|
|
+ where TForm : BaseEntityForm<TParent, TParentLink, TForm>, IRemotable, IPersistent, IDigitalFormInstance<TParentLink>, new()
|
|
|
{
|
|
|
public override string Title => Form?.Description ?? "View Form";
|
|
|
|