123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using Comal.Classes;
- using InABox.Core;
- using System.Diagnostics.CodeAnalysis;
- namespace comal.timesheets
- {
- public class AssignmentModel : ListModel<AssignmentModel, AssignmentShell, Assignment>
- {
-
- public AssignmentModel(IModelHost host, Func<Filter<Assignment>> filter, bool transient = false) : base(host, filter, transient)
- {
- }
- public AssignmentModel(IModelHost host, Func<Filter<Assignment>> filter, [NotNull] String filename) : base(host, filter, filename)
- {
- }
-
- // public override Columns<(.+)> Columns => AssignmentShell.Columns.Columns;
- }
- }
|