22 lines
463 B
C#
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();
|
|
}
|
|
}
|
|
}
|