コード例 #1
0
 public ServiceTemplate(IExampleBusinessService businessService)
 {
     this.businessService = businessService;
 }
コード例 #2
0
 public UserController(IExampleBusinessService busLogic, IAppSettings settings)
 {
     this.Logic = busLogic ?? throw new ArgumentNullException(nameof(busLogic));
 }