示例#1
0
 public async Task Create(Order entity)
 {
     entity.OrderDate = DateTime.Now;
     await _orderDAO.Create(entity);
 }