コード例 #1
0
 public CoolUserController(ICoolUserService coolUserService, ICoolComService coolComService, ILanguageService languageService, ErpManagerSettings erpManagerSettings)
 {
     _coolUserService    = coolUserService;
     _coolComService     = coolComService;
     _languageService    = languageService;
     _erpManagerSettings = erpManagerSettings;
 }
コード例 #2
0
 public CoolComController(ICoolUserService coolUserService, ICoolComService coolComService, ErpManagerSettings erpManagerSettings, IHttpContextAccessor httpContextAccessor, ILanguageService languageService)
 {
     _coolUserService     = coolUserService;
     _coolComService      = coolComService;
     _erpManagerSettings  = erpManagerSettings;
     _languageService     = languageService;
     _httpContextAccessor = httpContextAccessor;
 }
コード例 #3
0
ファイル: HomeController.cs プロジェクト: Kaygerya/ErpMnager
 public HomeController(ICoolUserService coolUserService, ICoolComService coolComService, ILanguageService languageService, ErpManagerSettings erpManagerSettings, ICoolQueryService coolQueryService, ICoolAppService coolAppService)
 {
     _coolUserService    = coolUserService;
     _coolComService     = coolComService;
     _languageService    = languageService;
     _erpManagerSettings = erpManagerSettings;
     _coolQueryService   = coolQueryService;
     _coolAppService     = coolAppService;
 }