HobbyProject/Source Code/TeamHobby.HobbyProjectGenerator/Implementations/User_Authentication.cs
Im_Alpha fa5282b074 initial batch
setting up sql configuration
2021-12-05 23:41:27 -08:00

17 lines
437 B
C#

namespace TeamHobby.HobbyProjectGenerator
{
public class User_Authentication : IUserService
{
public IList<string> GetAllUsers()
{
throw new NotImplementedException();
}
public bool User(string username)
{
//Console.WriteLine("Hello World!");
//Console.WriteLine("Testing console");
throw new NotImplementedException();
}
}
}