14 lines
412 B
C#
14 lines
412 B
C#
using Wino.Core.Domain.Enums;
|
|
|
|
namespace Wino.Core.Domain.Interfaces
|
|
{
|
|
public interface IThreadingStrategyProvider
|
|
{
|
|
/// <summary>
|
|
/// Returns corresponding threading strategy that applies to given provider type.
|
|
/// </summary>
|
|
/// <param name="mailProviderType">Provider type.</param>
|
|
IThreadingStrategy GetStrategy(MailProviderType mailProviderType);
|
|
}
|
|
}
|