| 1234567891011121314151617181920212223 |
- using System;
- using Comal.Classes;
- using InABox.Core;
- using System.Diagnostics.CodeAnalysis;
- namespace PRS.Mobile
- {
- public class ContactModel : ListModel<ContactModel, ContactShell, Contact>
- {
-
- public ContactModel(IModelHost host, Func<Filter<Contact>> filter, bool transient = false) : base(host, filter, transient)
- {
- }
- public ContactModel(IModelHost host, Func<Filter<Contact>> filter, [NotNull] String filename) : base(host, filter, filename)
- {
- }
-
- // public override Columns<(.+)> Columns => ContactShell.Columns.Columns;
- }
- }
|