private int KullaniciEkle(KullaniciBaseModel model) { KullaniciService client = new KullaniciService(); Kullanici kul = new Kullanici { Ad = model.Ad, Fotograf = model.Fotograf, Mail = model.Mail, RolID = model.RolID, Soyad = model.Soyad, Sifre = model.Sifre }; return(client.KullaniciEkle(kul).ID); }
private void KullaniciGuncelle(KullaniciBaseModel model) { KullaniciService client = new KullaniciService(); Kullanici _kul = client.KullanicilariGetir().Where(x => x.ID == model.ID).SingleOrDefault(); if (_kul != null) { _kul.Ad = model.Ad; _kul.Mail = model.Mail; _kul.Soyad = model.Soyad; _kul.Sifre = model.Sifre; } if (model.Fotograf != null) { _kul.Fotograf = model.Fotograf; } client.KullaniciGuncelle(_kul); }