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"); } }