menu is done and also overloaded GetCredentials and isInputValid to accomodate the new user credentials when creating an account
33 lines
727 B
C#
33 lines
727 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TeamHobby.HobbyProjectGenerator.UserManagement
|
|
{
|
|
public class AccountService
|
|
{
|
|
public bool CreateUserRecord(UserAccount newUser)
|
|
{
|
|
return true;
|
|
}
|
|
public bool EditUserRecord(UserAccount newUser)
|
|
{
|
|
return true;
|
|
}
|
|
public bool DeleteUserRecord(UserAccount newUser)
|
|
{
|
|
return true;
|
|
}
|
|
public bool DisableUser(UserAccount newUser)
|
|
{
|
|
return true;
|
|
}
|
|
public bool EnableUser(UserAccount newUser)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|