Ejemplo n.º 1
0
        public T Add(T entity)
        {
            if (entity == null)
            {
                throw new ArgumentNullException("entity");
            }
            dataContext.Add(entity);

            return(entity);
        }