using System; namespace EPS.Common.Repositories { /// /// This is required by any class that plans on being /// used in a repository. It ensures the type of lookup /// for every class in a repository. /// public interface IModel { /// /// Gets or sets the ID. I'm sure this is a design flaw somewhere, but /// the repository will always set this when a model is saved for the /// first time in the repository. /// /// The ID of the model. int ID { get; set; } } }