コード例 #1
0
ファイル: DefaultController.cs プロジェクト: ashGHub/Autofac
 public DefaultController(IService defaultService, ISampleLog log)
 {
     _defaultService = defaultService;
     _log            = log;
 }
コード例 #2
0
 public CallController(IService callService, ISampleLog log)
 {
     _callService = callService;
     _log         = log;
 }