28 lines
699 B
C#
28 lines
699 B
C#
|
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);
|
||
|
}
|
||
|
}
|
||
|
}
|