namespace DanieleMarotta.RiversongCodeShowcase { public class Entity { public const int InvalidId = 0; public int Id { get; private set; } public static T Create(int id) where T : Entity, new() { return new T { Id = id }; } } }