public void KullaniciKurumYetkiGuncelle(KullaniciKurumYetkiDto kky) { var ent = Context.KullaniciKurumYetkiler.FirstOrDefault(x => x.Id == kky.Id); ent.KurumId = kky.KurumId; ent.Aktif = kky.Aktif; ent.KullaniciId = kky.KullaniciId; Context.SaveChanges(); }
public void yetkiguncelle(KullaniciKurumYetkiDto kullanici) { BldSvc.kullaniciyetkiguncelle(new KullaniciKurumYetkiDto { Id = kullanici.Id, OlusturmaTarihi = kullanici.OlusturmaTarihi, Aktif = kullanici.Aktif, KullaniciId = kullanici.KullaniciId, KurumId = kullanici.KurumId }); }
public void KullaniciKurumYetkiEkle(KullaniciKurumYetkiDto kurumyetki) { var ent = Context.KullaniciKurumYetkiler.FirstOrDefault(x => x.Id == kurumyetki.Id); if (ent == null) { ent = new KullaniciKurumYetki(); Context.KullaniciKurumYetkiler.Add(ent); } ent.Aktif = kurumyetki.Aktif; ent.KullaniciId = kurumyetki.KullaniciId; ent.KurumId = kurumyetki.KurumId; Context.SaveChanges(); }
public void KullaniciYetkiGuncelle(KullaniciKurumYetkiDto dto) { var ent = Context.KullaniciKurumYetkiler.FirstOrDefault(x => x.KullaniciId == dto.Id); if (ent == null) { ent = new KullaniciKurumYetki(); ent.KullaniciId = dto.KullaniciId; // ent.Id = Context.KullaniciKurumYetkiler.Max(x => x.Id) + 1; Context.KullaniciKurumYetkiler.Add(ent); } ent.KurumId = dto.KurumId; ent.Aktif = dto.Aktif; Context.SaveChanges(); }
public void yetkiekle(KullaniciKurumYetkiDto kurumyetki) { var fcd = new HastaneOneri.Facade.FacadeBildirim(); fcd.KullaniciKurumYetkiEkle(kurumyetki); }
public void kullaniciyetkiguncelle(KullaniciKurumYetkiDto qry) { var fcd = new HastaneOneri.Facade.FacadeBildirim(); fcd.KullaniciYetkiGuncelle(qry); }