Esempio n. 1
0
 //bura yeni eklendi
 public Uye GetByMail(string mail)
 {
     return(_uyeRepo.Get(a => a.Mail == mail));
 }
Esempio n. 2
0
        public void DeleteByID(int entityID)
        {
            Uye currentUye = _uyeDAL.Get(a => a.ID == entityID);

            _uyeDAL.Remove(currentUye);
        }