public bool Add(KurumsalFotograf entity)
 {
     if (entity != null)
     {
         try
         {
             _kurumsalFotografRepo.Add(entity);
             return(true);
         }
         catch
         {
             throw new Exception("Beklenmedik bir hata oluştu.");
         }
     }
     else
     {
         throw new Exception("Boş mesaj eklenemez.");
     }
 }
 public bool Update(KurumsalFotograf entity)
 {
     throw new NotImplementedException();
 }