12345678910111213141516171819 |
- using System;
- using System.Diagnostics.CodeAnalysis;
- using System.Linq;
- using Comal.Classes;
- using InABox.Core;
- using InABox.Mobile;
- namespace PRS.Mobile
- {
- public class DeliveryFormModel : DigitalFormInstanceModel<DeliveryFormModel, DeliveryFormShell, DeliveryForm>
- {
- public DeliveryFormModel(IModelHost host, Func<Filter<DeliveryForm>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
- {
- }
-
- public IDigitalFormInstanceShell[] Forms => Items.OfType<IDigitalFormInstanceShell>().ToArray();
- }
- }
|