Push project
This commit is contained in:
12
Sorting/ISortingService.cs
Normal file
12
Sorting/ISortingService.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace SortingModel
|
||||
{
|
||||
public interface ISortingService
|
||||
{
|
||||
string SortText(string inputText, string strategy);
|
||||
IEnumerable<string> GetAvailableAlgorithmNames();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user