using System; using Comal.Classes; using InABox.Core; namespace PRS.Mobile { public class JobITPModel : ListModel { public JobITPModel(IModelHost host, Func> filter, bool transient = false) : base(host, filter, transient) { } public JobITPModel(IModelHost host, Func> filter, string filename) : base(host, filter, filename) { } } }