Example #1
0
 public void UpdatePaymentMode(Guid orderId, string paymentMode)
 {
     using (var connection = ConnectionFactory.GetConnection())
     {
         var order = new ResellerClub.DataAccess.Order(connection);
         order.UpdatePaymentMode(orderId, paymentMode);
         order.UpdateOrderStatus(orderId, Constant.OrderStatusPaymentAwaited);
     }
 }