Ejemplo n.º 1
0
        public void Save(IEntity person)

        {
            if (_verificationChecker.Check(person))
            {
                Console.WriteLine("Kullanıcı Kaydedildi: " + ((Person)person).Name);
            }
            else
            {
                throw new Exception("Not a valid Person");
            }
        }