Exemple #1
0
 public void EdytujTresc(string userId, Edytor edytor)
 {
     if (_db.Edytor.Where(x => x.Id == userId).Any())
     {
         _db.Entry(edytor).State = System.Data.Entity.EntityState.Modified;
     }
     else
     {
         _db.Edytor.Add(edytor);
     }
     SaveChanges();
 }
Exemple #2
0
        public Edytor EdytujTresc(string userId)
        {
            Edytor edytor = _db.Edytor.Where(x => x.Id == userId).FirstOrDefault();

            return(edytor);
        }