ContactModel.cs 428 B

1234567891011121314151617
  1. using System;
  2. using Comal.Classes;
  3. using InABox.Core;
  4. using System.Diagnostics.CodeAnalysis;
  5. using InABox.Mobile;
  6. namespace PRS.Mobile
  7. {
  8. public class ContactModel : CoreRepository<ContactModel, ContactShell, Contact>
  9. {
  10. public ContactModel(IModelHost host, Func<Filter<Contact>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
  11. {
  12. }
  13. }
  14. }