Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Orders;
using Nop.Web.Models.Order;
namespace Nop.Web.Factories;
///
/// Represents the interface of the return request model factory
///
public partial interface IReturnRequestModelFactory
{
///
/// Prepare the submit return request model
///
/// Submit return request model
/// Order
///
/// A task that represents the asynchronous operation
/// The task result contains the submit return request model
///
Task PrepareSubmitReturnRequestModelAsync(SubmitReturnRequestModel model, Order order);
///
/// Prepare the customer return requests model
///
///
/// A task that represents the asynchronous operation
/// The task result contains the customer return requests model
///
Task PrepareCustomerReturnRequestsModelAsync();
}