2024-10-18 08:32:27 +00:00
|
|
|
using _123.Data.LocalData.Entity;
|
|
|
|
using _123.Domain.Models;
|
2024-10-18 06:10:00 +00:00
|
|
|
using _123.Domain.UseCase;
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
namespace _123.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);
|
|
|
|
}
|
2024-10-18 08:32:27 +00:00
|
|
|
public void UpdateGroupName(String name, String name1)
|
|
|
|
{
|
|
|
|
StringBuilder groupOutput = new StringBuilder();
|
|
|
|
var group = _groupUseCase.UpdateGroupName(name,name1);
|
|
|
|
}
|
2024-10-18 09:30:44 +00:00
|
|
|
public void AddGroup (String name, String id)
|
|
|
|
{
|
|
|
|
StringBuilder groupOutput = new StringBuilder();
|
|
|
|
var group = _groupUseCase.AddGroup(name,id);
|
2024-11-08 07:51:01 +00:00
|
|
|
<<<<<<< HEAD
|
|
|
|
=======
|
2024-10-18 09:30:44 +00:00
|
|
|
{
|
|
|
|
groupOutput.AppendLine($"{group.Name}\t{group.ID}");
|
|
|
|
}
|
|
|
|
Console.WriteLine(groupOutput);
|
2024-11-08 07:51:01 +00:00
|
|
|
>>>>>>> b274d8f88d0df85505fa497de11d07625bde956d
|
2024-10-18 09:30:44 +00:00
|
|
|
}
|
|
|
|
|
2024-10-18 06:10:00 +00:00
|
|
|
}
|
|
|
|
}
|