123456789101112131415161718192021222324252627 |
- using System.Threading.Tasks;
- using GxPress.Common.WechatPay;
- using GxPress.Repository.Interface.Order;
- using GxPress.Service.Interface.Order;
- namespace GxPress.Service.Implement.Order
- {
- public class OrderService : IOrderService
- {
- private readonly IOrderRepository orderRepository;
- public OrderService(IOrderRepository orderRepository)
- {
- this.orderRepository = orderRepository;
- }
- /// <summary>
- /// 创建微信订单
- /// </summary>
- /// <param name="data"></param>
- /// <returns></returns>
- public async Task<bool> InsertWxOrderAsync(WxPayData data)
- {
- var order = new Entity.Order.Order();
- var attach = data.GetValue("attach").ToString();
- return await orderRepository.InsertAsync(order) > 0;
- }
- }
- }
|