using System.Collections.Generic; using WebAPIBase.Model; namespace WebAPIBase.Service.Interface { public interface IUserService { List GetUserList(); User GetToken(string username, string password); void InsertUser(string username, string password); } }