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

22 lines
463 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TeamHobby.HobbyProjectGenerator.Implementations
{
public class User_Manager : IUserService
{
public IList<string> GetAllUsers()
{
throw new NotImplementedException();
}
public bool User(string username)
{
throw new NotImplementedException();
}
}
}