1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using InABox.Core;
- namespace comal.timesheets
- {
- public interface IListModel : IModel
- {
-
- }
-
- public interface IListModel<TParent, TItem, TEntity> : IListModel
- where TParent : IListModel
- where TEntity : Entity, IRemotable, IPersistent, new()
- where TItem : Shell<TParent,TEntity>, new()
- {
- IList<TItem> Items { get; set; }
-
- IListModel<TParent, TItem, TEntity> Refresh(bool force);
- }
- }
|