Clear        


                
                    namespace _28_1_DemoFilmlerClassLibrary.Entities.Bases
{
    public abstract class Kayit
    {
        public int Id { get; set; }
        public DateTime OlusturulmaTarihi { get; private set; } // sadece bu sınıfta değer ataması yapılabilir,
                                                                // oluşturulan obje üzerinden bu özelliğe değer ataması yapılamaz

        protected Kayit(int id) : this()
        {
            Id = id;
        }

        protected Kayit()
        {
            OlusturulmaTarihi = DateTime.Now;
        }
    }
}