public virtual void Create(T entity) { if (entity == null) { throw new ArgumentNullException(nameof(entity)); } _bizLayer.Create(entity); }