public void Create(Order order) { if (order == null) { throw new ArgumentNullException(nameof(order)); } _orderDal.Insert(order); }