# Interface1.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Arayuz_uygulama { interface IDuzenle //İşlem seçeneklerimiz { void ekle(); void sil(); void guncelle(); } class Polis : IDuzenle //Polis bilgilerinin işleme alınması { public void ekle() { Console.WriteLine("Polis Memuru Atandı!"); } public void guncelle() { Console.WriteLine("Polis Memuru Güncellendi!"); } public void sil() { Console.WriteLine("...