OrderService.cs 851 B

123456789101112131415161718192021222324252627
  1. using System.Threading.Tasks;
  2. using GxPress.Common.WechatPay;
  3. using GxPress.Repository.Interface.Order;
  4. using GxPress.Service.Interface.Order;
  5. namespace GxPress.Service.Implement.Order
  6. {
  7. public class OrderService : IOrderService
  8. {
  9. private readonly IOrderRepository orderRepository;
  10. public OrderService(IOrderRepository orderRepository)
  11. {
  12. this.orderRepository = orderRepository;
  13. }
  14. /// <summary>
  15. /// 创建微信订单
  16. /// </summary>
  17. /// <param name="data"></param>
  18. /// <returns></returns>
  19. public async Task<bool> InsertWxOrderAsync(WxPayData data)
  20. {
  21. var order = new Entity.Order.Order();
  22. var attach = data.GetValue("attach").ToString();
  23. return await orderRepository.InsertAsync(order) > 0;
  24. }
  25. }
  26. }