| 1234567891011121314151617 |
- using System;
- using Comal.Classes;
- using InABox.Core;
- using System.Diagnostics.CodeAnalysis;
- using InABox.Mobile;
- namespace PRS.Mobile
- {
- public class ContactModel : CoreRepository<ContactModel, ContactShell, Contact>
- {
-
- public ContactModel(IModelHost host, Func<Filter<Contact>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
- {
- }
-
- }
- }
|