22 lines
467 B
C#
22 lines
467 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TeamHobby.HobbyProjectGenerator.Implementations
|
|
{
|
|
internal class Database_Users : IUserService
|
|
{
|
|
public IList<string> GetAllUsers()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool User(string username)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|