VirtoCommerce.Web.Models.Services.CustomerService.GetOrderAsync C# (CSharp) Method

GetOrderAsync() public method

public GetOrderAsync ( string storeId, string customerId, string orderNumber ) : Task
storeId string
customerId string
orderNumber string
return Task
        public async Task<VirtoCommerce.ApiClient.DataContracts.Orders.CustomerOrder> GetOrderAsync(
            string storeId, string customerId, string orderNumber)
        {
            return await this._orderClient.GetCustomerOrderAsync(customerId, orderNumber);
        }