40 lines
1.1 KiB
C#
Executable File
40 lines
1.1 KiB
C#
Executable File
using Posechaemost.Domain.Models;
|
|
using Posechaemost.Domain.UseCase;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Posechaemost.UI
|
|
{
|
|
public class GroupConsoleUI
|
|
{
|
|
GroupUseCase _groupUseCase;
|
|
public GroupConsoleUI(GroupUseCase groupUseCase) {
|
|
_groupUseCase = groupUseCase;
|
|
}
|
|
|
|
public void DisplayAllGroups()
|
|
{
|
|
StringBuilder groupOutput = new StringBuilder();
|
|
foreach (var group in _groupUseCase.GetAllGroups())
|
|
{
|
|
groupOutput.AppendLine($"{group.Id}\t{group.Name}");
|
|
}
|
|
Console.WriteLine(groupOutput);
|
|
}
|
|
|
|
public void UpdateGroupName(String name, String name1) {
|
|
StringBuilder groupOutput = new StringBuilder();
|
|
var group = _groupUseCase.UpdateGroupName(name, name1);
|
|
}
|
|
|
|
public void AddGroup(String name, String id)
|
|
{
|
|
StringBuilder groupOutput = new StringBuilder();
|
|
var group = _groupUseCase.AddGroup(name, id);
|
|
}
|
|
}
|
|
}
|