public bool Add(Uye entity) { UyeKontrol(entity); try { _uyeRepo.Add(entity); return(true); } catch (Exception ex) { throw new Exception(ex.Message); } }
public void Insert(Uye entity) { _uyeDAL.Add(entity); }