Push project
This commit is contained in:
21
TextSort/Program.cs
Normal file
21
TextSort/Program.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using SortingModel;
|
||||
using SortingModel.SortingAlgorithms;
|
||||
using TextSortWindow;
|
||||
|
||||
namespace TextSort
|
||||
{
|
||||
internal static class Program
|
||||
{
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
ApplicationConfiguration.Initialize();
|
||||
|
||||
using Window view = new();
|
||||
SortingService model = new(new SortingAlgorithmFactory());
|
||||
SortController controller = new(view, model);
|
||||
|
||||
Application.Run(view);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user