Exemplo n.º 1
0
        public bool Delete(int entityID)
        {
            Kullanici deleted = _kullaniciDAL.Get(a => a.KullaniciId == entityID);

            return(_kullaniciDAL.Delete(deleted) > 0);
        }