根据http://www.cnblogs.com/hzzxq/p/7373287.html#3784806 的博客文章修改jwt,里面有个IUserService ,目前有报错,IUserService 需要引用什么?一直没找到需要引用的类,是自己建的类还是nuget上下载?我这里报错:未能找到类型或命名空间名“IUserService”,请问该如何解决,麻烦了!
IUserService 是自己定义的接口
public interface IUserService
{
bool Auth(string username, string password);
}
定义接口对应的类
public class UserService: IUserService
{
public bool Auth(string username, string password)
{
bool bReturn = false;
if (username == "admin" && password == "admin")
{
bReturn = true;
}
return true;
}
}
在Startup.cs里面的ConfigureServices方法,
添加 service.AddSingleton<IUserService , UserService >();
这样就可以注入
已经解决了,谢谢