public TestController(ITestTableService _testService, IRequestInfo <TemplateContext> _requestinfo, ILogger <TestController> logger, IBackgroundJobService backgroundJobService) { this.testService = _testService; this.requestInfo = _requestinfo; this._logger = logger; _backgroundJobService = backgroundJobService; }
public SubDiForm( IYayoiCryptor yayoiCryptor, ITestTableService testTableService ) : this() { _testTableService = testTableService; _yayoiCryptor = yayoiCryptor; }
public Form1( IBoilEggTableRepository boilEggTableRepository, IYayoiCryptor yayoiCryptor, ITestTableService testTableService, IMohingaService mohingaService) : this() { _mohingaService = mohingaService; _boilEggTableRepository = boilEggTableRepository; _testTableService = testTableService; _yayoiCryptor = yayoiCryptor; }
public TestController(ITestTableService testService, ILogger logger) { _testService = testService; _logger = logger; }
public TestController(ITestTableService _testService, IRequestInfo <ApiContext> _requestinfo, ILogger <TestController> logger) { this.testService = _testService; this.requestInfo = _requestinfo; this._logger = logger; }
public HomeController(ITestTableService service) { Service = service; }
public GetTestData(ITestTableService testTableService) { _testTableService = testTableService; }