HobbyProject/Source Code/TeamHobby.HobbyProjectGenerator.UserManagement/AccountService.cs
Im_Alpha 6414c9feed menu finished, requires logs and archive
menu is done and also overloaded GetCredentials and isInputValid to accomodate the new user credentials when creating an account
2021-12-13 09:12:51 -08:00

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;
}
}
}