Ejemplo n.º 1
0
 public void Add(Character write)
 {
     if (write != null)
     {
         _db.Add(write);
         _db.SaveChanges();
     }
 }
Ejemplo n.º 2
0
 public void Add(Job write)
 {
     if (write != null)
     {
         _db.Add(write);
         _db.SaveChanges();
     }
 }
Ejemplo n.º 3
0
        /// <summary>
        /// Adds an entity of type T to the database.
        /// </summary>
        public void Add(T entity)
        {
            _semaphore.Wait();

            try
            {
                _context.Add(entity);
                _context.SaveChanges();
            }
            finally
            {
                _semaphore.Release();
            }
        }
Ejemplo n.º 4
0
 /// <summary>
 /// Adds an entity of type T to the database.
 /// </summary>
 public void Add(T entity)
 {
     _context.Add(entity);
     _context.SaveChanges();
 }