HobbyProject/Source Code/main/SystemAccountManager.cs
Im_Alpha d682c463a4 removed web app template and added main controller
initial main controller added
2021-12-10 02:07:02 -08:00

30 lines
564 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace main
{
internal class SystemAccountManager
{
public void AccountController()
{
// Create objects
UserAccount user = new UserAccount();
UiPrint ui = new UiPrint();
bool foo = true;
while (foo == true)
{
// sub menu
ui.SystemAccountMenu();
//
}
}
}
}