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
            });
        }
    }
Exemple #2
0
 public void UpdateIlanFotograf(IlanFotograf item)
 {
     _ilanFotografRepository.Update(item);
 }
Exemple #3
0
 public void DeleteIlanFotograf(IlanFotograf item)
 {
     _ilanFotografRepository.Delete(item.Id);
 }
Exemple #4
0
 public void AddIlanFotograf(IlanFotograf item)
 {
     _ilanFotografRepository.Add(item);
 }