Example #1
0
 public TestController(ITestBll bll)
 {
     LogHelper.Info("日志记录开始");
     _bll = bll;//构造注入实例化bll层操作类对象
 }
Example #2
0
 public TestController(ITestBll testBll)
 {
     TestBll = testBll;
 }