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