46 lines
1.3 KiB
C#
46 lines
1.3 KiB
C#
using _123.Data.LocalData.Entity;
|
|
using _123.Domain.Models;
|
|
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);
|
|
}
|
|
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);
|
|
<<<<<<< HEAD
|
|
=======
|
|
{
|
|
groupOutput.AppendLine($"{group.Name}\t{group.ID}");
|
|
}
|
|
Console.WriteLine(groupOutput);
|
|
>>>>>>> b274d8f88d0df85505fa497de11d07625bde956d
|
|
}
|
|
|
|
}
|
|
} |