摘要: net core 内置方式 接口 public interface ITestService { string Test(); } 实现 public class TestService : ITestService { public string Test() { return "依赖注入"; } 阅读全文
posted @ 2020-11-12 15:38 尘雾 阅读(109) 评论(0) 推荐(0) 编辑