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