protected NIslemSonuc <bool> ResimKaydet(NResimler IlanFotograf) { try { var yeni = new IlanFotograf { FotoPath = IlanFotograf.Resim, IlanId = IlanFotograf.IlanId, Thumb = IlanFotograf.Thumb }; Entity.IlanFotografs.Add(yeni); Entity.SaveChanges(); return(new NIslemSonuc <bool> { Basarilimi = true }); } catch (Exception hata) { return(new NIslemSonuc <bool> { Basarilimi = false, HataBilgi = new NHata { Sinif = "ResimKaydet", Metod = "IlanVeritabani", HataMesaj = hata.Message }, Mesaj = "Resim Eklenirken bir hata ile karşılaşıldı" + hata.Message }); } }
public void UpdateIlanFotograf(IlanFotograf item) { _ilanFotografRepository.Update(item); }
public void DeleteIlanFotograf(IlanFotograf item) { _ilanFotografRepository.Delete(item.Id); }
public void AddIlanFotograf(IlanFotograf item) { _ilanFotografRepository.Add(item); }