| 123456789101112131415 |
- using System;
- using Comal.Classes;
- using InABox.Core;
- using InABox.Mobile;
- namespace PRS.Mobile
- {
- public class ProductInstanceModel : CoreRepository<ProductInstanceModel, ProductInstanceShell,
- ProductInstance>
- {
- public ProductInstanceModel(IModelHost host, Func<Filter<ProductInstance>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
- {
- }
- }
- }
|