public TestController(ITestTableService _testService, IRequestInfo <TemplateContext> _requestinfo, ILogger <TestController> logger, IBackgroundJobService backgroundJobService)
 {
     this.testService      = _testService;
     this.requestInfo      = _requestinfo;
     this._logger          = logger;
     _backgroundJobService = backgroundJobService;
 }
Ejemplo n.º 2
0
 public SubDiForm(
     IYayoiCryptor yayoiCryptor,
     ITestTableService testTableService
     ) : this()
 {
     _testTableService = testTableService;
     _yayoiCryptor     = yayoiCryptor;
 }
Ejemplo n.º 3
0
        public Form1(
            IBoilEggTableRepository boilEggTableRepository,
            IYayoiCryptor yayoiCryptor,
            ITestTableService testTableService,
            IMohingaService mohingaService) : this()
        {
            _mohingaService = mohingaService;

            _boilEggTableRepository = boilEggTableRepository;

            _testTableService = testTableService;

            _yayoiCryptor = yayoiCryptor;
        }
Ejemplo n.º 4
0
 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;
 }
Ejemplo n.º 6
0
 public HomeController(ITestTableService service)
 {
     Service = service;
 }
Ejemplo n.º 7
0
 public GetTestData(ITestTableService testTableService)
 {
     _testTableService = testTableService;
 }