Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Messages;
namespace Nop.Services.Messages;
/// <summary>
/// Represents newsletter subscription type service
/// </summary>
public partial interface INewsLetterSubscriptionTypeService
{
/// <summary>
/// Inserts a newsletter subscription type
/// </summary>
/// <param name="newsLetterSubscriptionType">Newsletter subscription type</param>
/// <returns>A task that represents the asynchronous operation</returns>
Task InsertNewsLetterSubscriptionTypeAsync(NewsLetterSubscriptionType newsLetterSubscriptionType);
/// <summary>
/// Updates a newsletter subscription type
/// </summary>
/// <param name="newsLetterSubscriptionType">Newsletter subscription type</param>
/// <returns>A task that represents the asynchronous operation</returns>
Task UpdateNewsLetterSubscriptionTypeAsync(NewsLetterSubscriptionType newsLetterSubscriptionType);
/// <summary>
/// Deletes a newsletter subscription type
/// </summary>
/// <param name="newsLetterSubscriptionType">Newsletter subscription type</param>
/// <returns>A task that represents the asynchronous operation</returns>
Task DeleteNewsLetterSubscriptionTypeAsync(NewsLetterSubscriptionType newsLetterSubscriptionType);
/// <summary>
/// Gets a newsletter subscription type by newsletter subscription type identifier
/// </summary>
/// <param name="newsLetterSubscriptionTypeId">The newsletter subscription type identifier</param>
/// <returns>
/// A task that represents the asynchronous operation
/// The task result contains the newsletter subscription type
/// </returns>
Task<NewsLetterSubscriptionType> GetNewsLetterSubscriptionTypeByIdAsync(int newsLetterSubscriptionTypeId);
/// <summary>
/// Gets the newsletter subscription type list
/// </summary>
/// <param name="storeId">Load records allowed only in a specified store; pass 0 to load all records</param>
/// <returns>
/// A task that represents the asynchronous operation
/// The task result contains the newsletter subscription types
/// </returns>
Task<IList<NewsLetterSubscriptionType>> GetAllNewsLetterSubscriptionTypesAsync(int storeId = 0);
}