예제 #1
0
 public static string MusteriDuzenle(int mid, object musteri)
 {
     if (MusteriKontrol(mid))
     {
         if (mid % 2 == 1)
         {
             onlineMusteri n = (onlineMusteri)musteri;
             onlineMusteri o = (onlineMusteri)MusteriGetir(mid);
             o.email = n.email;
             o.szt   = n.szt;
         }
         else
         {
             magazaMusteri n = (magazaMusteri)musteri;
             magazaMusteri o = (magazaMusteri)MusteriGetir(mid);
             o.telNo = n.telNo;
         }
         context.SaveChanges();
         return("Güncelleme başarıyla yapıldı");
     }
     return("Güncelleme yapılamadı, Müşteri bulunamadı");
 }
예제 #2
0
 public static string FaturaEkle(fatura f)
 {
     try
     {
         context = GetContext();
         context.faturas.Add(f);
         context.SaveChanges();
         return("Fature eklendi");
     }
     catch
     {
         return("Fatura eklenemedi");
     }
 }
예제 #3
0
        public static string SiparisEkle(siparisler s, kitap k)
        {
            context = GetContext();
            if (MusteriKontrol(s.musteriNo))
            {
                context.siparislers.Add(s);

                context.kitaps.Add(k);
                context.SaveChanges();
                return("Sipariş eklendi.");
            }
            else
            {
                return("Bu ID'de müşteri yok.");
            }
        }
예제 #4
0
 public static void MusteriEkle(magazaMusteri m)
 {
     context = GetContext();
     context.magazaMusteris.Add(m);
     context.SaveChanges();
 }
예제 #5
0
 public static void MusteriEkle(onlineMusteri m)
 {
     context = GetContext();
     context.onlineMusteris.Add(m);
     context.SaveChanges();
 }