13 lines
265 B
C#
13 lines
265 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SortingModel
|
|
{
|
|
public interface ISortingService
|
|
{
|
|
string SortText(string inputText, string strategy);
|
|
IEnumerable<string> GetAvailableAlgorithmNames();
|
|
}
|
|
}
|