Пример #1
0
 public virtual void Create(T entity)
 {
     if (entity == null)
     {
         throw new ArgumentNullException(nameof(entity));
     }
     _bizLayer.Create(entity);
 }