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